$(document).ready(
	function ()
	{
		$(".left_cms_title2").hover(function () 
								 {
									
									$(this).css("background","url(../../../../../public/images/template/left_cmstitle_bg3.jpg) no-repeat");
									$(this).css("color","#006D82");
								 },
								 function() 
								{
									$(this).css("background","url(../../../../../public/images/template/left_cmstitle_bg.jpg) no-repeat");
									$(this).css("color","#4D4D4D");
								});
	});