$(document).ready(function () {

	/*
	 * Toogle visibility of blocks by clicking on the element with ".more" class
	 */
	$(".more").click(
	  function () {
			//switch toggle_visibility style
			if( $(this).parent().find(".toggle_visibility").css('display') == 'none' )
			{
				$(this).parent().find(".toggle_visibility").css('display', 'block');
				$(this).parent().find(".toggle_visibility").css('padding', '0');
				$(this).parent().find(".toggle_visibility").css('border-top', '0');
				return false;
			}
			else
			{
				$(this).parent().find(".toggle_visibility").css('display', 'none');
				return false;				
			}
			

	      }, 
	  function () {
			
	   }
	);

	
});

