// Scroll to ID function (fancy)
function slideTo(id){
	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}

$(document).ready( function() {
	
	// change the select dropdown to nicer style!
	$("SELECT").selectBox();

});
