$(document).ready(function() {
	$("a.gallery").fancybox();
	
	
	$(".crm").find('a').each(function(){
		var $v = $(this).attr("class");
		$v = $v+"_val";
		$(this).bind("click",function(e){
			if($('.'+$v+':hidden').css("display") == "none"){
				$(".s_cont").find('div').each(function(){
					$(this).hide("slow");
				});
				$('.'+$v).show("slow");
			}
			else{
				$('.'+$v).hide("slow");
			}
			return false;
		});
	});
});
