$(function()
{
	$('.quick-link-menu').jScrollPane({showArrows:true});;
	
	$('.jScrollPaneContainer').hide();
	
	scrollhidden=1;
	$('#quick-link-show').hover(function()
	{
		if (scrollhidden==1) {
			$('.jScrollPaneContainer').fadeIn('fast');
			scrollhidden=0;
		} else {
			$('.jScrollPaneContainer').fadeOut('fast');
			scrollhidden=1;
		};
		return false;
	});
	
	$('*').hover(function() {
		if (($(this).attr('class')!=='jScrollPaneContainer' && $(this).parent().attr('class')!=='jScrollPaneContainer' && $(this).parent().parent().attr('class')!=='jScrollPaneContainer' && $(this).parent().parent().parent().attr('class')!=='jScrollPaneContainer' && $(this).parent().parent().parent().parent().attr('class')!=='jScrollPaneContainer' && $(this).attr('id')!=='quick-link-show') || $(this).attr('id')=='content_wrapper') {
			$('.jScrollPaneContainer').hide();
			scrollhidden=1;
		};
	});
	
	$('#form-name').focus(function() {
		if ($('#form-name').val()=="Full Name*") {
			$('#form-name').val('');
		};
	});
	
	$('#form-company').focus(function() {
		if ($('#form-company').val()=="Company Name*") {
			$('#form-company').val('');
		};
	});
	
	$('#form-email').focus(function() {
		if ($('#form-email').val()=="Email address*") {
			$('#form-email').val('');
		};
	});
	
	$('#form-telephone').focus(function() {
		if ($('#form-telephone').val()=="Telephone") {
			$('#form-telephone').val('');
		};
	});
	
	$('#middle_column_animation').cycle({
	fx:	'fade',
	timeout: 4000});
	
	//Preload images for navigation
	jQuery.preloadImages = function()
	{
		for(var i = 0; i<arguments.length; i++)
		{
		jQuery("<img>").attr("src", arguments[i]);
		}
	}
	
	$.preloadImages("/images/waste-oil-hover.jpg", "/images/garage-waste-hover.jpg","/images/marpol-waste-hover.jpg","/images/fuel-oil-sales-hover.jpg");
	
});