// JavaScript Document
   google.load("jquery", "1.2.6");
          google.setOnLoadCallback(function() {
               var original_image = 'url(http://www.boarsheadgrillandtavern.com/wp-content/themes/boarshead/images/chops.jpg)';
            var second_image = 'url(http://www.boarsheadgrillandtavern.com/wp-content/themes/boarshead/images/shrimp.jpg)';
			var green1 = 'url(http://www.boarsheadgrillandtavern.com/wp-content/themes/boarshead/images/green_arrow.png)';
var none1 = 'none';

                $("a.menuswitch2").click(function() {
                    if ($(".home_contents").css('background-image').replace(/"/g, '') == original_image) {
                        $(".home_contents").css('background-image', second_image);
						  $("#featured_top").css('background-image', none1);
						   $("#featured_bottom").css('background-image', green1);
                    } else {
                       
                    }

                        
                });
				
				 $("a.menuswitch1").click(function() {
                    if ($(".home_contents").css('background-image').replace(/"/g, '') == second_image) {
                        $(".home_contents").css('background-image', original_image);
						  $("#featured_top").css('background-image', green1);
						  
                    } else {
                       
                    }
 $("#featured_bottom").css('background-image', none1);
                        return false;
                });
				
				
          });