$(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('');
		};
	});
	
	$('#button-waste-oil').hover(function() {
		$('#button-garage-waste').attr('src','/images/garage-waste-hover.jpg');
		$('#button-marpol-waste').attr('src','/images/marpol-waste-hover.jpg');
		$('#button-fuel-oil').attr('src','/images/fuel-oil-sales-hover.jpg');
	});
	
	$('#button-waste-oil').mouseout(function() {
		$('#button-garage-waste').attr('src','/images/garage-waste.jpg');
		$('#button-marpol-waste').attr('src','/images/marpol-waste.jpg');
		$('#button-fuel-oil').attr('src','/images/fuel-oil-sales.jpg');
	});
	
	$('#button-garage-waste').hover(function() {
		$('#button-waste-oil').attr('src','/images/waste-oil-hover.jpg');
		$('#button-marpol-waste').attr('src','/images/marpol-waste-hover.jpg');
		$('#button-fuel-oil').attr('src','/images/fuel-oil-sales-hover.jpg');
	});
	
	$('#button-garage-waste').mouseout(function() {
		$('#button-waste-oil').attr('src','/images/waste-oil.jpg');
		$('#button-marpol-waste').attr('src','/images/marpol-waste.jpg');
		$('#button-fuel-oil').attr('src','/images/fuel-oil-sales.jpg');
	});
	
	$('#button-marpol-waste').hover(function() {
		$('#button-waste-oil').attr('src','/images/waste-oil-hover.jpg');
		$('#button-garage-waste').attr('src','/images/garage-waste-hover.jpg');
		$('#button-fuel-oil').attr('src','/images/fuel-oil-sales-hover.jpg');
	});
	
	$('#button-marpol-waste').mouseout(function() {
		$('#button-waste-oil').attr('src','/images/waste-oil.jpg');
		$('#button-garage-waste').attr('src','/images/garage-waste.jpg');
		$('#button-fuel-oil').attr('src','/images/fuel-oil-sales.jpg');
	});
	
	$('#button-fuel-oil').hover(function() {
		$('#button-waste-oil').attr('src','/images/waste-oil-hover.jpg');
		$('#button-garage-waste').attr('src','/images/garage-waste-hover.jpg');
		$('#button-marpol-waste').attr('src','/images/marpol-waste-hover.jpg');
	});
	
	$('#button-fuel-oil').mouseout(function() {
		$('#button-waste-oil').attr('src','/images/waste-oil.jpg');
		$('#button-garage-waste').attr('src','/images/garage-waste.jpg');
		$('#button-marpol-waste').attr('src','/images/marpol-waste.jpg');
	});
	
	$('.pics a img').hide();
	$('.pics a img:first').fadeIn(2000);
	window.setTimeout(function(){
		$('.pics a img').show();$('.pics').cycle();
	},2000);

	
	//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");
		
});