var $m = jQuery.noConflict();

$m(document).ready(function(){
	
	/* Dropdown Menu */
	
	$m("#nav li").hover(function(){
		$m(this).find('.sub-nav').css('visibility', 'visible');
		$m(this).find('a').addClass('hover');
	},function(){
		$m(this).find('.sub-nav').css('visibility', 'hidden');
		$m(this).find('a').removeClass('hover');
	});
	
	/* Singapore Events Months Menu */
	
	$m('#sg-event-months a').click(function(){
		var month = $m(this).parent().attr('class');
		$m('#sg-event-months a').removeClass('current');
		$m(this).addClass('current');
		$m('#sg-event > div').removeClass('show');
		$m('#sg-event .'+month).addClass('show');
		
		if( $m('#sg-event .'+month).length){
			$m('#sg-event .sg-event-empty').removeClass('show');
		}else{
			$m('#sg-event .sg-event-empty').addClass('show');
		}
		
	});

});
