// Javascript Settings go here

$(document).ready(function() 
{
	// animated scroll when .backtotop link is clicked in footer
	$('.backtotop').click(function(){
		$('html, body').animate({scrollTop:0}, 'medium');
		return false;
	});
	
	// Activate drowdown menu
	jQuery('ul.sf-menu').superfish();

});
		
		