
$(function(){
	$('li#gm_'+controller, '#ulgmenu').addClass('active');
	$('li#gm_'+controller, '#uladminmenu').addClass('active');
	$('img.btnBuy').hover(function(){
			$(this).attr('src', html_base + '/img/btnBuy_mo.gif');
	},function(){
			$(this).attr('src', html_base + '/img/btnBuy.gif');
	});
	$('img.btnRental').hover(function(){
			$(this).attr('src', html_base + '/img/btnRental_mo.gif');
	},function(){
			$(this).attr('src', html_base + '/img/btnRental.gif');
	});
	$('img.btnInquiry').hover(function(){
			$(this).attr('src', html_base + '/img/btnInquiry_mo.gif');
	},function(){
			$(this).attr('src', html_base + '/img/btnInquiry.gif');
	});

});

