$(function(){
			/* Active Link */
		var currentURL = window.location.toString().split("/");

		var currentpage = currentURL[currentURL.length-1];
		$("#smoothmenu1 a").each(function() {
		var hreflink = $(this).attr("href");		
			if (hreflink.toLowerCase()==currentpage.toLowerCase()) {	
			
				$(this).addClass("current");
				if($(this).parents('li')){
					$(this).parents('li').addClass("current")
				}
			}
		});
});



$(function(){
	$(window).resize(resize_stripe);
	resize_stripe();
});


function resize_stripe(){
	
var width=$(window).width(); 

if(width < 1024){
	
	$('body').removeClass('big');
	} else {
		
		$('body').addClass('big');
	}
}

