/*******************************************************************************************
+------------------------------------------------------------------------------------------+
COMPANY:Raven Developers 2009
+------------------------------------------------------------------------------------------+
FILE INFO: Fixes the displacement of site menu when hovered on it turns
into bold which shifts the UL LI elements either left or right and produces
shifted offset when hovered on the menu links. This little fix applies a
fix width to anchors based on their current width which ensures that the
hover effect does not create an offset.
+------------------------------------------------------------------------------------------+
WEBSITE:http://www.ravendevelopers.com
+------------------------------------------------------------------------------------------+
Portions created by Anirudh K. Mahant are Copyright of Raven Developers (C) 2009.
+------------------------------------------------------------------------------------------+
COPYRIGHT NOTICE:
The contents of this file are protected and copyrighted and are subject to
the original developer(s) of this file;Unauthorised use of this file is strictly prohibited.	
+------------------------------------------------------------------------------------------+
/******************************************************************************************/
$(document).ready(function(){
	//$("div.site-menu ul li a").each(function(i) {
		//$(this).width($(this).width() + 3);
	//});
});
