
$(document).ready(function(){
	$(window).bind("load", function() { 
	    $("div#photos").slideView()
	}); 

	$("#applayNow").mouseover(function(){
		$(this).css("background-image", "url('./images/bg_apply_now.gif')");
		});	
	$("#applayNow").mouseout(function(){
		$(this).css("background-image", "none");
		});
	
	
	$("#selfEmp").mouseover(function(){
		$(this).css("background-image", "url('./images/bg_self_emp.gif')");
		});
	$("#selfEmp").mouseout(function(){
		$(this).css("background-image", "none");
		});
		
		
	$("#incomeProp").mouseover(function(){
		$(this).css("background-image", "url('./images/bg_income_prop.gif')");
		});
	$("#incomeProp").mouseout(function(){
		$(this).css("background-image", "none");
		});
		
		
	$("#commercial").mouseover(function(){
		$(this).css("background-image", "url('./images/bg_commercial.gif')");
		});	
	$("#commercial").mouseout(function(){
		$(this).css("background-image", "none");
		});
		
		
	$("#homeQuality").mouseover(function(){
		$(this).css("background-image", "url('./images/bg_home_quality.gif')");
		});	
	$("#homeQuality").mouseout(function(){
		$(this).css("background-image", "none");
		});
		
		
	$("#refinance").mouseover(function(){
		$(this).css("background-image", "url('./images/bg_refinance.gif')");
		});	
	$("#refinance").mouseout(function(){
		$(this).css("background-image", "none");
		});
	
	
	$("#homePurchase").mouseover(function(){
		$(this).css("background-image", "url('./images/bg_home_purchase.gif')");
		});	
	$("#homePurchase").mouseout(function(){
		$(this).css("background-image", "none");
		});
});
