// JavaScript Document
$(function() {
		   
	$(".showswitch").mouseover(function() {
    	$(this).css('cursor', 'pointer');
	});	
	
	$('.block').each(function() {
 	 //$(this).height($(this).height()).hide();
	});
		   
	//SLIDER SETTINGS
	$(".showswitch").click(function() {
	if ($(this).next().is(":hidden")) {
        $(this).next().slideDown("show feedback");
		$(this).find(".showtext").text("hide feedback");
      } else {
		$(this).find(".showtext").text("show feedback");
       $(this).next().slideUp("normal");
		
   
      }	
	});	   
		   
});
