	
	var FullscreenrOptions = {  width: 2000, height: 1500, bgID: '.bg' };
	jQuery.fn.fullscreenr(FullscreenrOptions);	
	
	$(document).ready(function(){
			
		$("#caption").load(function(){
			$("#caption").show("slide", { direction: "right" });
		});
		
		$("#contact").mouseenter(function(){
			bkIn("#bg3");
		}).mouseleave(function(){
			bkOut("#bg3");
		});
		
		$("#services").mouseenter(function(){
			bkIn("#bg1");
		}).mouseleave(function(){
			bkOut("#bg1");
		});
		
		$("#recruit").mouseenter(function(){
			bkIn("#bg2");
		}).mouseleave(function(){
			bkOut("#bg2");
		});
		
		$(".workThumb").mouseenter(function(){
			bkIn("#work_" + $(this).attr("id"));
		}).mouseleave(function(){
			bkOut("#work_" + $(this).attr("id"));
		});
		
	});
	
	function bkIn(id) {
		if ($(id + ":visible").length==0) {
			$(".bg:visible").fadeOut(200, "easeInQuad", function(){$(id).fadeIn(200, "easeInQuad");});	
		}
	}
	
	function bkOut(id) {
		//$(id).fadeOut("fast", "easeInQuad", function(){$("#bg1").fadeIn("fast", "easeInQuad");});	
	}
