$.fn.ready(function(){
	if($('#portfolio-slideshow0').length) {
		$('#portfolio-slideshow0').find('a').each(function(){
	    	var $this = $(this);
	    	var $img = $this.find('img');
	    	var $img_w = $img.width();
	    	var $img_h = $img.height();
	    	
	    	if($img_w < $img_h) {
	    		$this.css({
		    		'width': $img_w + 'px',
		    		'margin': '0 auto',
		    		'display': 'block'
		    	});
	    	}
		    	
	    });
	}
	$('#menu-principal > li').each(function(){
		var $this = $(this);
		
		if($this.children('.sub-menu').length){
			$this.addClass('submenu-pai');
		}
	});
});

