//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();
	//$(".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"); } 
	);
	
	//slides in the name of the gallery or category
	$('#galleries li a span, #categories li a span').hide();
	$('#galleries li a, #categories li a').hover(function(){
			$(this).find('span').slideDown('fast');
		}, function() {
			$(this).find('span').slideUp('fast');
		}
	);

});