$(document).ready(function() {

	// Google Analytics
	try {
		var pageTracker = _gat._getTracker("UA-10272062-1");
		pageTracker._trackPageview();
	} catch(err) {}	
	
	//Tell a Friend Pop Up
	$("#tell_a_friend_button").click(function(){
		var janela;
		var url = $(this).attr("href");
		var name = "tell_a_friend";
		var width = 380;
		var height = 580;
		var top = (screen.availHeight - height) / 2;
		var left = (screen.availWidth - width) / 2;
		var scroll = 'no';
		var resize = 'no';
		pop = window.open(url, name, 'width=' + width + ', height=' + height + ', top=' + top + ', left=' + left + ', scrollbars=' + scroll + ', resizable=' +  resize + ', statusbar=no');
		pop.focus();
		return false;
	});
	
	//Notice/Error Close Button
	$("#close_notice").click(function(){
		$(".notice, .error").fadeOut("fast");
		return false;
	});
});
