// JavaScript Document



$(document).ready(function() {
	var mainpic = $("#content .colA h3.colHeader + h1 + p img").attr("src");
	if( $("#content .colA h3.colHeader + h1 + p img").length > 0){
		$("#content .colA h3.colHeader + h1 + p img").remove(); 
		$('body').css('backgroundImage','url(' + mainpic +')'); 
	}
});

/*

$(document).ready(function() {
	$(".thumbBox").addClass("boxLink");
  $(".thumbBox").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
  $(".thumbBox").hover(
	  function () {
    	$(this).find("img + img").fadeIn("200");
    }, 
    function () {
    	$(this).find("img + img").fadeOut("300");
    });
});

*/




