$(document).ready(function(){
	$(function() {
		$('a[rel*=external]').click( function() {
			window.open(this.href);
			return false;
		});
	});

	$(".hover").hover(function(){
		var file = $(this).attr('src');
		var hover = file.replace("_off","_on");
		$(this).attr('src',hover);
	}, function() {
		var file = $(this).attr('src');
		var hover = file.replace("_on","_off");
		$(this).attr('src',hover);
	});

	/* preload das imagens de hover */
	$(".hover").each(function() {
		var img = this.src;
		$("body").append('<img class="deleteMe invisible" src="'+img.replace("_off.","_on.")+'">');
	});
	$(".deleteMe").remove();

	$("#selSwitch").change(function() {
		var page = $(this).val();
		window.open(page);
	});

	$(function() {
		$('#divContainer .tooltip').tooltip({
			showURL: false
		});
	});
});