$(document).ready(function()	{	var _border=get_3px_border();	$('a.s_creation').hover(function(){	$(this).parent().css('border-right','3px solid #8cbf0a');	},function(){	$(this).parent().css('border-right',_border);	});		$('a.g_design').hover(function(){	$(this).parent().css('border-right','3px solid #297acc');	},function(){	$(this).parent().css('border-right',_border);	});		$('a.portf').hover(function(){	$(this).parent().css('border-right','3px solid #646d68');	},function(){	$(this).parent().css('border-right',_border);	});		$('a.l_center').hover(function(){	$(this).parent().css('border-right','3px solid #c3d4e4');	},function(){	$(this).parent().css('border-right',_border);	});		$('a.contacts').hover(function(){	$(this).parent().css('border-right','3px solid #e5e5e5');	},function(){	$(this).parent().css('border-right',_border);	});	});
