$(document).ready(function(){
   

   $("#CARPICTURESHOME").hover(
	function() {
		$(this).stop().animate({"opacity": "0.8"}, "fast");
		},												   
	function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
	});


	 $("#CARPICTURES").hover(
	function() {
		$(this).stop().animate({"opacity": "0.8"}, "fast");
		},												   
	function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
	});
   
    $("#SCREENSAVERS").hover(
	function() {
		$(this).stop().animate({"opacity": "0.8"}, "fast");
		},												   
	function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
	});
   
   $("#CARMERCHANDISE").hover(
	function() {
		$(this).stop().animate({"opacity": "0.8"}, "fast");
		},												   
	function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
	});
	
	   $("#CONTACTUS").hover(
	function() {
		$(this).stop().animate({"opacity": "0.8"}, "fast");
		},												   
	function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
	});
	

});









