/**
	Hello Interactive | Pony : Back in the game Blog
	Developer(s):
		+ Fellipe Cicconi (liperuf@gmail.com)
*/

$(function() {
	
	$('.resume').find('p:eq(0)').each(function(){
		if($(this).find('img')[0])
			$(this).addClass('image');
		else
			$(this).parent().parent().addClass('wide');
	});
	
	/* layout adjusts */
	$('#header').css({ width: ($.browser.msie || $.browser.mozilla)?'980px':'970px' });
	
});