$(document).ready(function(){

	$("#gmenu03").hover(
		function() {
			offset = $("#gmenu03").offset();
			$("#gmenu03_child").css("left",offset.left);
			$("#gmenu03_child").show();
		},
		function(){}
	);
	$(".gmenu_child").hover(
		function(){},
		function(){$(this).hide()}
	);

	$(".header-logo").hover(
		function(){$(".gmenu_child").hide()},
		function(){$(".gmenu_child").hide()}
	);

	$(".gmenu").hover(
		function(){$(".gmenu_child").hide()},
		function(){$(".gmenu_child").hide()}
	);



});

$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover(
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};

