





$( document ).ready(function(){

	//	top menu event
	topmenuInit();
});


function topmenuInit ()
{
	$( '#menutop li' ).hover(function ( ) { 
		$( this ).children('ul').css('display','block');
	},function (  )	{
		$( this ).children('ul').css('display','none');
	});//*/

	$( '#menutop a' ).click(function (){
		$( '#menutop a' ).removeClass( 'current' );
		$( this ).attr('class','current');
	});
}