
function setHeight(){
//functions sets footer to always be at the bottom
$(document).ready(function() {
var fheight = 58;
	if($("html").height() > $("#thesite").height()){
		$("#shadow").height($("html").height()-fheight);
	}
	
	if($("#shadow").height() < (800-fheight)){
		$("#shadow").height(800-fheight);
	}

});
}



$(document).ready(function() {
//applying png fix for ie 6
$("#shadowleft").hide();
$("#shadowright").hide();
$("#shadow").css({background: "#000000" });
$("#shadow").css({width: "851px" });
$("#shadowleft").css({background: "url(images/left_shadow.png)" });
$("#shadowright").css({background: "url(images/right_shadow.png)" });
$('#shadowleft').pngfix().pngunfix().pngfix();
$('#shadowright').pngfix().pngunfix().pngfix();
$("#shadowleft").show();
$("#shadowright").show();



//embed flash
 $('#logo').flash(
       { src: 'flash/arizona-logo.swf',
        width: 550,
        height: 180,
		wmode: 'transparent' },
       { version: 8 }
   );
 
  $('#navbar').flash(
       { src: 'flash/navbar.swf',
        width: 847,
        height: 40,
		wmode: 'transparent' },
       { version: 8 }
   );
 

  
});


function sendFriendForm(){
jQuery(document).ready(function() {
$('#sendfriend').html('<table><tr><td>Email Address:</td><td><input type=\"text\" name=\"email\" /></td></tr><tr><td>&nbsp;</td><td><input onclick=\"sendToFriend();\" type=\"button\" name=\"send\" value=\"Send\"/></td></tr></table>')

});
}	

function sendToFriend(){
jQuery(document).ready(function() {
//alert();
if($("input[@name=email]").val() != ""){
$('#sendfriend').html('Picture Has Been Sent');
}
});
}	


