/*******************************************************************
**--> Intro: For Spark Customize WordPress Themes；
**--> Author: lizus.com@gmail.com
**--> WebSite: http://lizus.com
*******************************************************************/

jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])").addClass("external").attr("target","_blank");

});

jQuery(document).ready(function (){
	jQuery('.nav').each(function (){
		jQuery(this).children('ul').children('li:last').addClass('last');
	});
	jQuery('.nav li').hover(function (){
		jQuery(this).children('ul').show();
	},function (){
		jQuery(this).children('ul').hide();
	});
});
