$(document).ready(function(){
	//External/Blank
   	$("a[@rel=external]").attr('target','_blank');

	//Tooltip
	$('input[@title]').example(function() {
		return $(this).attr('title');
	});
	
	//Imprimir
	$('#icoPrint').children("a").click(function() {
		window.print();
		return false;
	});
	
	//Favoritos
	$('#bookmark').children("a").click(function() {
		if(document.all) window.external.AddFavorite(location.href,document.title);
		else if(window.sidebar)window.sidebar.addPanel(document.title,location.href,'')
		return false;
	});
	
	//Indicar Amigo
	$('#icoSubmit').children("a").click(function() {
		return hs.htmlExpand( this, {objectType: 'iframe', outlineType: 'rounded-white', wrapperClassName: 'highslide-wrapper',outlineWhileAnimating: true, preserveContent: false, width: 400, height: 350});
		return false;
	});
	
	//Assinar Newsletter
	$('#newsletter').children("a").click(function() {
		return hs.htmlExpand( this, {objectType: 'iframe', outlineType: 'rounded-white', wrapperClassName: 'highslide-wrapper',outlineWhileAnimating: true, preserveContent: false, width: 400, height: 320});
		return false;
	});
	
	//Botão Voltar
	$('#voltar').children("a").click(function() {
		history.go(-1);
		return false;
	});
	
	$('#animacao').show();
	
	$('#fechar').click(function()
	{
		$('#animacao').fadeOut('slow');
		return false;
	});
	

	
	
});

