jQuery(document).ready(function(){
// scroll
jQuery(window).scroll(function(){
if (jQuery(this).scrollTop() > 100) {
jQuery('.scrollup').fadeIn();
} else {
jQuery('.scrollup').fadeOut();
}
});
jQuery('.scrollup').click(function(){
jQuery("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
// dropdownmenu
jQuery("").appendTo("#top-menu");
jQuery("",{
"selected": "selected",
"value" : "",
"text" : "Site Menu" // default ", {
"value" : el.attr("href"),
"text" : el.text()
}).appendTo("#top-menu select");
});
jQuery("#top-menu select").change(function() {
window.location = jQuery(this).find("option:selected").val();
});
});