$(document).ready(function(){


	//fancybox
	$('a.gallery-thumb').fancybox({
		zoomSpeedIn: 200,
		zoomSpeedOut: 500,
		overlayShow: true,
		overlayOpacity: 0.75,
		zoomOpacity: true,
		centerOnScroll:false
	});
	
	//fancybox
	$('.blog a:has(img)').filter('[href$="jpg"], [href$="JPG"], [href$="png"], [href$="PNG"], [href$="gif"], [href$="GIF"]').fancybox({
		zoomSpeedIn: 200,
		zoomSpeedOut: 500,
		overlayShow: true,
		overlayOpacity: 0.75,
		zoomOpacity: true,
		centerOnScroll:false
	});
	
	$('#starfishsend #name').val('Name');
	$('#starfishsend #tuhyuh-tuhyuh').val('Email');
	$('#starfishsend input.text').addClass("grey").focus( function() { $(this).removeClass("grey"); } );
	
	//navi dropdown
	$("#nav ul.inner > li").hover(function(){
			$(this).addClass("hover");
		},
		function(){
			$(this).removeClass("hover");
		});

}); 
