// Select form small
$(document).ready(function() {
	
	
	// Regular hover
	$(".hover").hover(function() {
		var img = $(this).attr("src");
		var hover = img.replace(".png","_over.png");
		$(this).attr({"src":hover});
	}, function() {
		var img = $(this).attr("src");
		var hover = img.replace("_over.png",".png");
		$(this).attr({"src":hover});
	});
	
	
	// Regular hover
	$(".hover2").hover(function() {
		$(this).css('background-color','#2b7676');
	}, function() {
		$(this).css('background-color','');
	});
	
	

	// Regular hover
	$(".hover3").hover(function() {
		$(this).css('background-color','#2d8889');
		$(this).children("a").css('color','#ffffff');
		$(this).removeClass("menu_left_item_b");
		$(this).addClass("menu_left_item_b_sel");
	}, function() {
		$(this).css('background-color','#c5c7c8');
		$(this).children("a").css('color','#454545');
		$(this).addClass("menu_left_item_b");
		$(this).removeClass("menu_left_item_b_sel");
	});
	
	// Regular hover
	$(".hover4").hover(function() {
		$(this).css('background-color','#2d8889');
		/*$(this).removeClass("menu_left_item_b");
		$(this).addClass("menu_left_item_b_sel");*/
	}, function() {
		$(this).css('background-color','#721d21');
		/*$(this).addClass("menu_left_item_b");
		$(this).removeClass("menu_left_item_b_sel");*/
	});

});
