// JavaScript Document

$(document).ready(function(){
   // onload items
	$("#c_banner .menu li").bind({
		mouseenter: function(event) {
			$(event.target).closest('li').addClass("menu_over");
		},
		mouseleave: function (event) {
			$(event.target).closest('li').removeClass("menu_over");
		},
		click: function(event) {
			thisURL = $(event.target).children('a').attr('href');//get the URL within
			window.location.href = thisURL;
		}
	});
	
	$("#top_container a").closest('div').bind({
		mouseenter: function(event) {
			$(event.target).addClass("topref_over");
		},
		mouseleave: function(event) {
			$(event.target).removeClass("topref_over");
		},
		click: function(event) {
			thisURL = $(event.target).children('a').attr('href');//get the URL within
			window.location.href = thisURL;
		}
	});
});
