$(document).ready (
	function() {
		//$('#contactform').attr("action", "javascript:get(document.getElementById('contactform'));");
		//$('#contactform').removeAttr("method");
		$('.desc').hide();
		$('.title').removeAttr('href');
		$('.title').click(function(){
			//$('#status').fadeOut('fast');
			$(this).parent().parent().parent().next().toggle();
		})
		$('.note, .explanation').hide();
		$('.explain').show();
		$('.hide, .explain').removeAttr('href');
		
		if(!$.cookie('p_image_note')) {
			$('.note').fadeIn();
		}
		$('.hide').click(function(){
			$('.note').fadeOut();
			//$(this).parent().toggle();
			$.cookie('p_image_note', 'hide', { path: '/', expires: 10 });
		})
		$('.explain').click(function(){
			$(this).parent().next().toggle();
		})
	}
)