jQuery(document).ready(function() {

	jQuery('h3.click_to_reveal').click(function(){
		jQuery(".voucher").show();	
		jQuery(this).hide();
		jQuery("h3.valid_list_title").hide();
		jQuery("div.list_of_valid").hide();
		
		var url = jQuery(this).attr("id");
		
		//alert(url);
		
		TheNewWin = window.open("http://www.allthecodes.co.uk/"+url,'_blank','toolbar=1, location=1,directories=1,status=1,menubar=1, scrollbars=1,resizable=1');
		TheNewWin.blur();		
		return false;
	});
	
});