// JavaScript Document
$(document).ready(function() {
	//$('.ProductMain').bind('click', function () {alert("hello")})
	try {
	if(document.all) {
		$('#Menu li.HasSubMenu').hover(function() {
			$(this).addClass('over');
			return false;
		},
		function() {
			$(this).removeClass('over');
		});
	}
	} 
	catch(e) {}
});
