$(document).ready(function() {
    $("#browsable").scrollable({ circular: true }).navigator();	
});
// Back button after Contact form submit
$("#reset").click(function(){
	$('.text').removeAttr('disabled');
	$('.done').hide();
	$('.form').show();
});
function goToByScroll(id){
	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}
$("header nav ul.main-menu li a").hover(function(){
	$(this).animate({marginTop: "0px"}, 100);
	}, function () {
	$(this).animate({marginTop: "-5px"}, 300);
	}
);
