// JavaScript Document
$(document).ready(function(){
	$(".first").css({'background-image':'url(webimages/menus.jpg)'});
	$(".second").css({'background-image':'url(webimages/about_us.jpg)'});
	$(".third").css({'background-image':'url(webimages/services.jpg)'});
	$(".fourth").css({'background-image':'url(webimages/gallery.jpg)'});
	/*$(".first").hover(function() {
											   
		$(".first").css({'background-image':'url(webimages/menus_hover.jpg)'});
		

			}   );
			
			$(".first").mouseout(function() {
		$(".first").css({'background-image':'url(webimages/menus.jpg)'});
		
			}   );
			
			$(".second").hover(function() {
		$(".second").css({'background-image':'url(webimages/about_us_hover.jpg)'});
		
			}   );
			
			$(".second").mouseout(function() {
		$(".second").css({'background-image':'url(webimages/about_us.jpg)'});
		
			}   );
			$(".third").hover(function() {
		$(".third").css({'background-image':'url(webimages/services_hover.jpg)'});
		
			}   );
			
			$(".third").mouseout(function() {
		$(".third").css({'background-image':'url(webimages/services.jpg)'});
		
			}   );
			$(".fourth").hover(function() {
		$(".fourth").css({'background-image':'url(webimages/gallery_hover.jpg)'});
		
			}   );
			
			$(".fourth").mouseout(function() {
		$(".fourth").css({'background-image':'url(webimages/gallery.jpg)'});
		
			}   );*/
});
/////////////////////////////////////////////////////////////////////////////



