$(document).ready(function(){
	
		
	$(".slideGroup div.slideClosed").hover(
		
		function(){

			$(this).css({'background-color' : '#e2ded4', 'cursor' : 'pointer'});
			
		},
		
		function(){
			$(this).css({'background-color' : '#f3f1ea', 'cursor' : 'auto'});
		}
	);



if (location.hash) {
   	
   		var myHash = location.hash;
		$(".slideGroup div.slideOpen").hide();
		$(myHash).prev("div").hide();
		$(myHash).show();
		
}

else {
	
	$(".slideGroup div.slideOpen").hide();
	$(".slideGroup div.slideOpen.first").show();
	$(".slideGroup div.slideClosed.first").hide();

}
	


$(".slideClosed, .slideClosed a").click(function(e){
		e.preventDefault();
		$(".slideOpen:visible").slideUp("slow");
		$(".slideClosed:hidden").slideDown("slow");
		$(this).slideUp("slow");
		$(this).next('div').slideDown("slow", initSifr);
	});	
	
});