$(document).ready(function() {
	$(document).pngFix();
	
	$.localScroll({
		queue:true, // one axis after the other
        offset: -50, // scroll a bit more up so one can see the anchors title
		duration:2000 // kind of fast
     });
	
	// $('input[title]').each(function() {
	//	if($(this).val() === '') {
	//		$(this).val($(this).attr('title'));	
	//	}
	//	
	//	$(this).focus(function() {
	//		if($(this).val() == $(this).attr('title')) {
	//			$(this).val('').addClass('focused');	
	//		}
	//	});
	//	$(this).blur(function() {
	//		if($(this).val() === '') {
	//			$(this).val($(this).attr('title')).removeClass('focused');	
	//		}
	//	});
//	});
		
	$("#showcase").css("overflow", "hidden");
	
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 2,
		prev: '#prev',
		next: '#next'
	});
	
	$("#showcase").hover(function() {
		$("ul#nav").fadeIn();
		},
		
		function() {
	$("ul#nav").fadeOut();
	});

});
