// JavaScript Document
$(document).ready(function(){
$('.dropDownMenu ul .headlink').hover(
			function() { $('.dropDownList', this).slideDown('fast'); 
						 
						},
			function() { $('.dropDownList', this).slideUp('fast');
						
						 
						  
		});
$('.mainCont .price-list .chechBox_Up').toggle( function (){ $(this).addClass("checked");
															 $(this).children().attr("value","checked"); }, 
												function (){ $(this).removeClass("checked");
															 $(this).children().attr("value","");});
}
);
 
