$(document).ready(function() {
	
	$('.backToTop').click(function(e) {
		e.preventDefault();
		$('html, body').animate({scrollTop:0}, 'slow');
	});
	
	$('.menu-header ul li').each(function(index) {
		if($(this).children('ul').size() > 0 ) {
			$(this).children('a').append('<span></span>');	
			$(this).children('a').css({"padding-right":"20px"});	
		}
	});


	
});
