function send() {
    document.location = "mailto:thomas@tompigs.com";
}

function send2() {
    document.location = "mailto:hello@banrap.com";
}

function open(p,c) {
	
	var f = document.forms[0];
	
	f.page.value = p;
	f.catname.value = c;
	
	f.submit();
	
}

function layout() {

	/*var winh = $(window).height();
	var fotosTop = winh*8/100;

	$("DIV.fotos").css("top",fotosTop+"px");*/
	
}

$(document).ready(function(){ 

	$('a').focus(function(){
		this.blur();
	}); 
	
	$("DIV.fotos").fadeIn("slow");
	$("DIV.textPage").fadeIn("slow");
	$("DIV.tompigsPhoto").fadeIn("slow");
	
	layout();

}); 
