$(document).ready(function(){
	$("#search_inp").focus(function () { 
      $(this).css("color", "#3E4D55");
    });
	
	src = $("#left_menu > .current_page").attr("id");
	$("#img1").attr("src" , "/shared/images/" + src + ".jpg");
	
	$( "#left_menu > a" ).each(function( int_index ) {
		$(this).hover(function() {
			src = $(this).attr("id");
			$("#img1").attr( "src", "/shared/images/" + src + ".jpg" );
		});
	});
	
	$( "#left_menu" ).hover( function(){}, function() {
		src = $("#left_menu > .current_page").attr("id");
		$("#img1").attr("src" , "/shared/images/" + src + ".jpg");
	});
});

