$(function() {
     

            // create the image rotator
            setInterval("rotateImages()", 4000);
        });

        function rotateImages() {
            var oCurPhoto = $('#photoShow div.current');
            var oNxtPhoto = oCurPhoto.next();
            if (oNxtPhoto.length == 0)
                oNxtPhoto = $('#photoShow div:first');

            oCurPhoto.removeClass('current').addClass('previous');
            oNxtPhoto.css({ opacity: 0.0 }).addClass('current').animate({ opacity: 1.0 }, 2000,
                function() {
                    oCurPhoto.removeClass('previous');
                });
		}
		

$(function() {
	$.getJSON('http://twitter.com/status/user_timeline/vjem_events.json?count=1&callback=?',
	function(data){
	$.each(data, function(index, item){
	$('#twitter').append(item.text);
});
});
	});


$(function() {
	
	$("h3")
	.prepend('<img src="/images/h3l.gif" alt="" />');
	
	});




