$(function() {

		// secure form
		$.get('http://www.kbsa.org.uk/token.php',function(txt) {
			// make sure your form has a class of .secure on it
			$('#search_specialist_new form').append('<input type="hidden" name="ts" value="'+txt+'" />');
			$('.secure').append('<input type="hidden" name="ts" value="'+txt+'" />');
		});
		
		if ($("#gallery").length > 0) {
			$("#gallery li").each(function() {
				var imgid = $(this).attr('id');
				var imgid2 = imgid.replace('kbsaimg','')
				if($.cookie(imgid) == imgid2) {
					$("#gallery #" + imgid + " .star-rating").find('a').hide();
				}
			});
		}
	
});
