$(document).ready(function(){  
	$('a.roofracks').hover(
		function() {
			$('#headtop').css('background', 'url(/images/headtop-roof.jpg) no-repeat');
			},
		function() {
			$('#headtop').css('background', 'url(/images/headtop-kayak.jpg) no-repeat');
			}
	); 
//	$('a.kayakcarriers').hover(
//		function() {
//			$('#headtop').css('background', 'url(/images/headtop.jpg) no-repeat');
//			},
//		function() {
//			$('#headtop').css('background', 'url(/images/headtop-kayak.jpg) no-repeat');
//			}
//	); 
	$('a.canoecarriers').hover(
		function() {
			$('#headtop').css('background', 'url(/images/headtop-canoe.jpg) no-repeat');
			},
		function() {
			$('#headtop').css('background', 'url(/images/headtop-kayak.jpg) no-repeat');
			}
	); 
	$('a.paddlesurf').hover(
		function() {
			$('#headtop').css('background', 'url(/images/headtop-paddlesurf.jpg) no-repeat');
			},
		function() {
			$('#headtop').css('background', 'url(/images/headtop-kayak.jpg) no-repeat');
			}
	); 
	$('a.loadingsystems').hover(
		function() {
			$('#headtop').css('background', 'url(/images/headtop-loading.jpg) no-repeat');
			},
		function() {
			$('#headtop').css('background', 'url(/images/headtop-kayak.jpg) no-repeat');
			}
	); 
	$('a.sporttrailers').hover(
		function() {
			$('#headtop').css('background', 'url(/images/headtop-trailers.jpg) no-repeat');
			},
		function() {
			$('#headtop').css('background', 'url(/images/headtop-kayak.jpg) no-repeat');
			}
	); 
	$('a.storage').hover(
		function() {
			$('#headtop').css('background', 'url(/images/headtop-storage.jpg) no-repeat');
			},
		function() {
			$('#headtop').css('background', 'url(/images/headtop-kayak.jpg) no-repeat');
			}
	); 
});  

