$(function() {

	$('#intro li a', '.home').click(function(e) {
		$('#intro section').hide().filter(this.hash).fadeIn(150);
		e.preventDefault();
	});
	
	$('#intro li:eq(0)').find('a').click();
	
    $('#search').focus(function(){
		if (this.value == this.placeholder) {
			this.value = '';
		}
    }).blur(function(){
		if (this.value == "") {
			this.value == this.placeholder
		}
    }).each(function(){
	  	if (this.value == "") {
	    	this.value == this.placeholder
		}
	});		

	$(".fancybox").fancybox();
		
	$(".various").fancybox({
		maxWidth	: 600,
		maxHeight	: 400,
		fitToView	: false,
		width		: '70%',
		height		: '70%',
		autoSize	: false,
		closeClick	: false,
		openEffect	: 'none',
		closeEffect	: 'none'
	});
});
