function MM_openBrWindow(theURL,winName,features) { //v2.0
	w = window.open(theURL,winName,features);
	if (w && window.focus) {
		w.focus();
	}
	return w;
}
function popup(url) {
  return MM_openBrWindow(url,'popup','scrollbars=yes,resizable=yes,width=420,height=500');
}
function popupSized(url,w,h) {
  return MM_openBrWindow(url,'popup','scrollbars=yes,resizable=yes,width='+w+',height='+h);
}

$(document).ready(function() {
	$('#menu a.submenu').click(function(){
		s = $(this).parents('li').find('ul');
		$.cookie('productsSubmenuShow', null, {'path' : '/'});
		if ($(s).is(':visible')) {
			$(s).slideUp();
			$.cookie('productsSubmenuShow', '0', {'path' : '/'});
		} else {
			$(s).slideDown();
			$.cookie('productsSubmenuShow', '1', {'path' : '/'});
		}
		return false;
	});
	$('table.trMarker tbody tr').mouseover(function(){
		$(this).addClass('trOn');
	}).mouseout(function(){
		$(this).removeClass('trOn');
	});
	$('.goBack').click(function () { 
  	history.back();
		return false;
  });
});