$(document).ready(function() {
  $("tr").each(function(e) {
		$(this).children("td:first").addClass("heading");
	})
	
	$("#products_menu").mouseover(function(e) {
		$(this).children("ul").show()
	}).mouseout(function(e) {
		$(this).children("ul").hide()
	})
	
	$("#main .sidebar li a").each(function(e) {
		
		var name = $(this).html().replace(/ /g,'_').replace(/\-/g,'').toLowerCase() + ".php"
		var path = window.location.toString().indexOf(name)
		if(path > 0) {
			$(this).parent().addClass("on")
		}
		
	})
	
})

