// FOR CLOSENESS DARKEN
	
/*	$(".single_block a").css({opacity: "0.6"});
	
	$(".single_block").parent().parent().mouseenter(function(){
		$(".single_block a", this).stop(true,true).css({opacity: "1"});
    }).mouseleave(function(){

		if( $(this).attr("class") != "always_on" )
		{
			$(".single_block a", this).stop(true,true).animate({opacity: "0.6"},500);
			//$("#search_input").nextAll('div').children("div").css({display:"none"});
		}

	});*/
