$(document).ready(function(){
	$('.Hmenu').hide();
	$('.hasmenu').mouseover(function(){
		$('.Hmenu').show();
	});
	$('.hasmenu').mouseout(function(){
		$('.Hmenu').hide();
	});
	$('.imghover').mouseover(function(){
		$(this).css({'opacity':0.6});
	});
	$('.imghover').mouseout(function(){
		$(this).css({'opacity':1});
	});
	
	$('.hovermenu').mouseover(function(){
		$(this).css({ 'background': '#e01a1a'});
	});
	
	$('.hovermenu').mouseout(function(){
		$(this).css({ 'background': 'transparent'});
	});
	try {
		$(".select_skin").select_skin();
	} catch(err){}
});
