$(function(){
	$('#nav>li').mouseenter(function(){
		if($(this).children('ul').length!=0){
			$(this).children('ul').show();
		}
	})
	
	$('#nav>li').mouseleave(function(e){
		if($(this).children('ul').length!=0){
			$(this).children('ul').hide();
		}
	})
	
	if($('img[alt="registration_image"]').length==0){
		$('#main p img').removeAttr('height');
		$('#main p img').attr('width',300);
		$('#main .single .wp-caption-text').width($('#main .single .wp-caption img').width())
	}
})
