// JavaScript Document

$(document).ready(function() {
						   
						 					   

		$('.hint .hintclose').click(function() {
									
									
		var id = ($(this).parent('.hint').attr('id'));
		$(this).parent('.hint').slideUp(300);
		
		// set a cookie to stop it loading:
		$.cookie('nohint-' + id, 'true', {expires: 365 * 20, expiretype: "days"} ) ;
									
											   })
						   });
