/*******************************************************************
**--> Intro: For Lizus Customize WordPress Themes
**--> Author: lizus.com@gmail.com
**--> WebSite: http://www.lizus.com
**--> JS脚本;
*******************************************************************/

$(function ()
{
	var nowLocation=window.location;
	$('#nav a').each(function ()
	{
		var thisURL=$(this).attr('href').slice(0,-1);
		var verify=nowLocation.toString().search(thisURL);
		if (verify==0)
		{
			$(this).parent().addClass('nowLocations');
		}
	});
	$(".nowLocations:last").addClass('nowLocation');
});

jQuery.noConflict();

