function contact(texto, assunto){
user = "suggestions";
site = "myfreewallpapers.com";
if (texto==null){
	var texto=user + '<i style="color:#F00;"><b>AT</b></i>' + site;
}

document.write('<a href=\"mailto:' + user + '@' + site + '?Subject:' + assunto + '\">');
document.write(texto + '</a>');
}

if (self != top) {
    if (document.images)
        top.location.replace(window.location.href);
    else
        top.location.href = window.location.href;
}
 navigation:
$(document).ready(function() {
    maxWidth = 255;
    minWidth = 45;	
	lastBlock = $("#" + var_lastBlock);
	$(lastBlock).css('width', '255px');
	
    $(".aba").hover(
      function(){
        $(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
		$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
		lastBlock = this;
      }
    );
	$('a#get').fancybox({
		'width':600, 
		'height':250, 
		'padding':20,
		'hideOnContentClick': false
		})
});
