$(function (){

	/* keeps the sidebnar the same length as the right container
	if ($('#sidebar').height() < $('#content').height()) {
		$('#sidebar').height($('#content').height());
			}
	*/
			
	/* remove form input value text on focus */
	 $('#search-text').focus(function(){
     	if($(this).val() == 'Search'){
     		$(this).val('');
     	}
     });
      
	 $('#search-text').blur(function(){
      	if($(this).val() == ''){
      		$(this).val('Search');
      	}
     });
	 
	 
	 
/* 	FANCYBOX
/* ----------------------------------------- */
	
	/* Using custom settings */
	
	$("a#single_image").fancybox({
		'overlayShow'	:	true,
		'padding'		:	0,
		'overlayColor'	:	'#000',
		'overlayOpacity':	'0.7',
		'titlePosition'	:	'over',
		'onComplete'	:	function() {
		$("#fancybox-wrap").hover(function() {
			$("#fancybox-title").show();
		}, function() {
			$("#fancybox-title").hide();
		});
	}
	});
	
	
/* 	ADD CLASS
/* ----------------------------------------- */
	
	$("ul#custom-list li:nth-child(4n)").addClass("last-item");
	
	
	
			
});



