$(document).ready(function (){
    init_sponsors();
    v_banner();
	$('#photo_tab').click(function (){
		if($(this).css('font-weight') != 'normal'){
			$(this).css('font-weight' , 'normal');
			$(this).css('cursor' , 'default');
			$('#photo_count').css('display', 'inline');
			$('#map_tab').css('font-weight', 'bold');
			$('#map_tab').css('cursor' , 'pointer');
			slides_on = 1;
			show_event('welcome');
			show_slides();
		}
	});
	$('#map_tab').click(function (){
		$(this).css('font-weight' , 'normal');
		$(this).css('cursor' , 'default');
		$('#photo_tab').css('font-weight', 'bold');
		$('#photo_tab').css('cursor', 'pointer');
		$('#photo_count').css('display', 'none');
		show_map();
	});
    $("head").append("<link rel=\"shortcut icon\" href=\"image/festival_icon.gif\"/>");
	countdown();
	slideshow();
	get_twitter_feed(4);
	setTimeout('timeout_handler()',6000);
    if($.browser.mozilla)
    {
        $("#nav li ul").css("top", "4px");
    }
});

function timeout_handler()
{
	$('.scroll_box:first').slideUp('slow',function() {
			$(this).insertAfter('#v_banner div:last-child');
			$('.scroll_box:hidden:first').fadeIn('slow',function(){});
		});
	setTimeout('timeout_handler()',6000);	
}
