$(function(){

	$('a[rel~=blank],a[rel~=external]').each(function(){
		$(this).attr('target','_blank');
	});

	$('.email').pMail();

	$('.paging').center();
	
	$('#conteudo').before('<div id="conteudoBordaTopo"></div>');
	
	if($('#capa').length > 0){
		$.addPlugin('flash');
		$('#capa #conteudoBordaTopo').flash({
			src: defaultUrl+'swf/banner_capa.swf',
			width: '100%',
			height: '100%'
		});
		
		$(
			'#capa #conteudo .produtos,'+
			'#capa #conteudo .galeria,'+
			'#capa #conteudo .empresa,'+
			'#capa #conteudo .noticias'
		).wrapInner('<div class="wrap"></div>');
		
		$.addPlugin('biggerlink');
		$(
			'#capa #conteudo .destaque,'+
			'#capa #conteudo .produtos ul li,'+
			'#capa #conteudo .galeria ul li,'+
			'#capa #conteudo .empresa .wrap'
		).biggerlink();
	}else if($('#noticias.index').length > 0){
		$.addPlugin('biggerlink');
		$(
			'#noticias.index #conteudo ul.destaque li,'+
			'#noticias.index #conteudo ul.listagem li'
		).biggerlink();
	}
	$('#produtos.ver #conteudo table tbody tr:odd').addClass('odd');
	
	if($('#produtos.ver #conteudo table').length > 0){
		$.addPlugin('corners');
		$('#produtos.ver #conteudo table thead tr th').corners('top 10px');
	}
	
	
});
$(window).load(function(){
	$.fn.normalizeHeight = function(){
		var maxHeight = 0;
		$(this).each(function(){
			maxHeight = (maxHeight > $(this).outerHeight()) ? maxHeight : $(this).outerHeight();
		}).each(function(){
			$(this).css({
				'padding-bottom': maxHeight-$(this).outerHeight()+'px'
			});
		});
	};
	//$('#galerias.index #conteudo ul.destaque li h4 a')).normalizeHeight();
	//$('#galerias.index #conteudo ul.listagem li a').normalizeHeight();
	$('#produtos.ver #conteudo .col2 .opcionais .listagem li').normalizeHeight();
	$('#produtos.ver #conteudo .col2 .acessorios .listagem li').normalizeHeight();
});
