$(document).ready(function(){
	$("#site_search").click(function () { 
      $(this).css("color", "#25292F");
    });
	$(".btn_gray1").mouseover(function () { 
	  $(this).attr("class", "btn_gray1_over");
    });
	$(".btn_gray1").mouseout(function () { 
	  $(this).attr("class", "btn_gray1");
    });
	$(".left_img_large img, .left_img_small img, .left_img_small_gray img").mouseover(function () { 
	  if($(this).attr("rel") != "") {
		$(this).attr("src", $(this).attr("rel"));
	  }
      $(this).css("cursor", "hand");
    });
	$(".left_img_large img, .left_img_small img, .left_img_small_gray img").mouseout(function () { 
      if($(this).attr("id") != "") {
		$(this).attr("src", $(this).attr("id"));
	  }
	  
	});
	
	
//	if(document.getElementById("img1").name != "")
//	{
//		$("#img1").attr("src", webroot + "shared/images/"+ document.getElementById("img1").name+".jpg");
//		$("#"+ document.getElementById("img1").name).attr("class", "current_page");
//	}
//	else $("#img1").attr("src", webroot + "shared/images/menu_1.jpg");
});
