//jquery scripts
$(function() {
	$tabs = $('#tabs').tabs({ fx: { opacity:'toggle', duration:'1000' } });
	$tabs.bind("tabsshow", function(event, ui) { window.location.hash = ui.tab.hash; });
	
	// set the transparent pixel
	if ( $.browser.msie ) { $.ifixpng('/images/pixel.gif'); $('img, .bgPng').ifixpng(); }
	
	$('#intro_slideshow').cycle ({ fx:'fade', timeout: 2000, speed: 500, next:'#intro_slideshow' });
	
	$("#pictures a").photoViewer();
	$(".hoverContainer").hover(function(){ 
			$(this).css('background-color','#333333'); 
			$(this).find('p').show(); 
		}, function() { 
			$(this).css('background-color',''); 
			$(this).find('p').hide(); 
		}
	);
	$(".expand").tooltip({ showURL:false, track:true, delay:0, fade:250 });
	
	$('#pictures a').tooltip({ showURL:false, track:true, delay:0, fade:250 });
		
	//dropdown nav
	$(".category_list").find("ul").hide();
	$(".category_list").hover(
		function(){ $(this).find("ul").slideDown("fast"); $(this).addClass("ieHover"); }, 
		function(){ $(this).find("ul").slideUp("fast").removeClass("ieHover"); } 
	);

});