$(document).ready(function(){
	
	$('header nav ul.sub-menu').each(function(){
		$(this).parent('.menu-item').addClass('has-dropdown');
	});
	
	$('header nav .has-dropdown a').each(function(){
		var link = $(this).attr('href');
		$(this).click(function(){
			if ( link == '#' ) return false;
		});
		$(this).hover(function(){
			if ( link == '#' ) $(this).css('color','#807A75');
		});
		
	});
		
	$('.entry-content img').each(function(){
		var pictureWidth = $(this).width();
		var pictureHeight = $(this).height();
		if ( pictureWidth == 600 && pictureHeight == 400 ) $(this).css({'width':'810px', 'height':'540px'});
		else if ( pictureWidth == 600 && pictureHeight == 410 ) $(this).css({'width':'810px', 'height':'554px'});
		else if ( pictureWidth == 600 && pictureHeight == 450 ) $(this).css({'width':'810px', 'height':'608px'});
		else if ( pictureWidth == 600 && pictureHeight == 600 ) $(this).css({'width':'810px', 'height':'810px'});
	});
	
	$('p img.alignleft + img.alignright').each(function(){
		$(this).parent().addClass('clearfix').css('margin-bottom','5px');
	});
	
});



