/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */
jQuery(document).ready(function() {
	 jQuery("div.form-search").mouseover(function() {		
			jQuery(this).addClass("hoverbackgroundclass");
		  }).mouseout(function() {
			jQuery(this).removeClass("hoverbackgroundclass");
		});	
	jQuery("div.block").mouseover(function() {
		jQuery(this).addClass("hoverborderclass");	
		jQuery(this).children(':first-child').addClass("hoverbackgroundclass");
		//jQuery('div.block-title').addClass("hoverbackgroundclass");
	  }).mouseout(function() {
		jQuery(this).removeClass("hoverborderclass");
		jQuery(this).children(':first-child').removeClass("hoverbackgroundclass");
		//jQuery('div.block-title').removeClass("hoverbackgroundclass");
	});
	jQuery("div.best-seller").mouseover(function() {
		jQuery(this).addClass("hoverborderclass");		
		jQuery(this).children(':first-child').addClass("hoverbackgroundclass");
		//jQuery('div.best-seller-title').addClass("hoverbackgroundclass");
	  }).mouseout(function() {
		  jQuery(this).removeClass("hoverborderclass");
		  jQuery(this).children(':first-child').removeClass("hoverbackgroundclass");
		  //jQuery('div.best-seller-title').removeClass("hoverbackgroundclass");
	});
	jQuery("div.advance-search").mouseover(function() {
		jQuery(this).addClass("hoverborderclass");		
		jQuery(this).children(':first-child').addClass("hoverbackgroundclass");
		//jQuery('div.best-seller-title').addClass("hoverbackgroundclass");
	  }).mouseout(function() {
		  jQuery(this).removeClass("hoverborderclass");
		  jQuery(this).children(':first-child').removeClass("hoverbackgroundclass");
		  //jQuery('div.best-seller-title').removeClass("hoverbackgroundclass");
	});
	jQuery("div.box").mouseover(function() {
		jQuery(this).addClass("hoverborderclass");		
		jQuery('div.head').addClass("hoverbackgroundclass");
		jQuery('div.head > h4').addClass("hoverbackgroundclass");
	  }).mouseout(function() {
		  jQuery(this).removeClass("hoverborderclass");
		  jQuery('div.head').removeClass("hoverbackgroundclass");
		  jQuery('div.head > h4').removeClass("hoverbackgroundclass");
	});
	jQuery("div.box").mouseover(function() {
		jQuery(this).addClass("hoverborderclass");	
		jQuery(this).children(':first-child').addClass("hoverbackgroundclass");
		//jQuery('div.head').addClass("hoverbackgroundclass");
		//jQuery('div.head > h4').addClass("hoverbackgroundclass");
	  }).mouseout(function() {
		  jQuery(this).removeClass("hoverborderclass");
		  jQuery(this).children(':first-child').removeClass("hoverbackgroundclass");
		  //jQuery('div.head').removeClass("hoverbackgroundclass");
		  //jQuery('div.head > h4').removeClass("hoverbackgroundclass");
	});
	
});
