/*******************************************************************
**--> Intro: For Spark Customize WordPress Themes；
**--> Author: atozwordpress.com@gmail.com
**--> WebSite: http://www.atozwordpress.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(){
	var sh=jQuery('#sidebar').height();
	var mh=jQuery('.main').height();
	if (sh<mh){
		jQuery('#sidebar').height(mh);
	}else{
		jQuery('.main').height(sh);
	}
	jQuery('#menu-primary>ul>li:not(:last)').append(' | ');
	jQuery('#menu-footer>ul>li:not(:last)').append(' | ');
	jQuery('.pro_img a').attr('href',jQuery('.pro_img img').attr('src'));
});
