$(document).ready(function() {	  	  
			  
			  // Hide/Show the options pannel
			  $('.options_pannel').toggle();
	
			  $('a.personalise').click(function() {
			    	$('.options_pannel').slideToggle();
			    	return false;
			  });
		  
			  
			// Image PRELOADING for the titles 
			
			jQuery.preloadImages = function()
			{
				for(var i = 0; i<arguments.length; i++)
				{
					jQuery("<img>").attr("src", arguments[i]);
				}
			}
		  	$.preloadImages("pods/block_paving/title_on.gif", "pods/block_paving/title_off.gif",
							  "pods/brochure_libary/title_on.gif", "pods/brochure_libary/title_off.gif",
							  "pods/case_studies/title_on.gif", "pods/brochure_libary/title_off.gif",
							  "pods/kerb/title_on.gif", "pods/kerb/title_off.gif",
							  "pods/machine_lay/title_on.gif", "pods/machine_lay/title_off.gif",
							  "pods/news/title_on.gif", "pods/news/title_off.gif");
		  	
					// set up rollover
					$("img.rollover").hover(
						function()
						{
							this.src = this.src.replace("_off","_on");
						},
						function()
						{
							this.src = this.src.replace("_on","_off");
						}
					);


				
	});	  