$(document).ready(function() {
	//Product Listing Rollover
	
	$(".list_news li").mouseover(function () {
      //$(this).css("background","#EDEDED");
	  $(this).css("background","#becdd8");
    });
	
	$(".list_news li").mouseout(function () {
      $(this).css("background","#e9eef2");
    });
	
	$(".trade_list li").mouseover(function () {
      //$(this).css("background","#EDEDED");
	  $(this).css("background","#ddbe9e");
    });
	
	$(".trade_list li").mouseout(function () {
      $(this).css("background","#f6ede4");
    });
	
	$(".showrooms_list li").mouseover(function () {
      //$(this).css("background","#EDEDED");
	  $(this).css("background","#dde0d0");
    });
	
	$(".showrooms_list li").mouseout(function () {
      $(this).css("background","#eff0e8");
    });
	
	$(".did_you_know_red").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #f04f49");
    });
	
	$(".did_you_know_red").mouseout(function () {
     $(this).css("background","url(images/did_you_know/did_you_know_red.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_blue").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #62b0cf");
    });
	
	$(".did_you_know_blue").mouseout(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_blue.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_green").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #bdc432");
    });
	
	$(".did_you_know_green").mouseout(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_green.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_orange").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #f7971e");
    });
	
	$(".did_you_know_orange").mouseout(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_orange.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_purple").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #8c75a2"); 
    });
	
	$(".did_you_know_purple").mouseout(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_purple.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_dark_green").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #6d7b34"); 
    });
	
	$(".did_you_know_dark_green").mouseout(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_dark_green.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_pink").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #c41e5c"); 
    });
	
	$(".did_you_know_pink").mouseout(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_pink.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_yellow").mouseover(function () {
     $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #dfbe39"); 
    });
	
	$(".did_you_know_yellow").mouseout(function () {
     $(this).css("background","url(images/did_you_know/did_you_know_yellow.gif) 4px 4px no-repeat #ffffff");
    });
	
	$(".did_you_know_dark_blue").mouseover(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_white.png) 4px 4px no-repeat #2f5eb6");
    });
	
	$(".did_you_know_dark_blue").mouseout(function () {
      $(this).css("background","url(images/did_you_know/did_you_know_dark_blue.gif) 4px 4px no-repeat #ffffff");
    });
	
 });