// JavaScript Document
$(document).ready(function() {

	// Home page page call outs 
	$(".PBCServices").hover(function(){
		$('#pbcBox').animate( { width:"670px" }, { queue:false, duration:900 } );
		$('#pbcBox').css('z-index', '1000');
		
		}, function() {
		$('#pbcBox').animate( { width:"0px" }, { queue:false, duration:900 } );
		$('#pbcBox').css('z-index', '1');	
	});
	
	$(".Hogan").hover(function(){
		$('#hoganBox').animate( { width:"670px" }, { queue:false, duration:900 } );
		$('#hoganBox').css('z-index', '1000');
		
		}, function() {
		$('#hoganBox').animate( { width:"0px" }, { queue:false, duration:900 } );
		$('#hoganBox').css('z-index', '1');
			
	});

	$(".OurTeam").hover(function(){
		$('#ourteamBox').animate( { width:"670px" }, { queue:false, duration:900 } );
		$('#ourteamBox').css('z-index', '1000');
		
		}, function() {
		$('#ourteamBox').animate( { width:"0px" }, { queue:false, duration:900 } );
		$('#ourteamBox').css('z-index', '1');
			
	});// End Call outs
	
});


