$(document).ready(function(){ $("#demosMenu").change(function(){ var id = $(this).find("option:selected").attr("id"); switch (id){ case 'fullVideos': window.location.href = 'videoBackground.html'; break; case 'background': window.location.href = 'backgrounds.html'; break; case 'oneSection': window.location.href = 'oneSection.html'; break; case 'looping': window.location.href = 'looping.html'; break; case 'noAnchor': window.location.href = 'noAnchor.html'; break; case 'scrollingSpeed': window.location.href = 'scrollingSpeed.html'; break; case 'easing': window.location.href = 'easing.html'; break; case 'callbacks': window.location.href = 'callback.html'; break; case 'css3': window.location.href = 'css3.html'; break; case 'continuous': window.location.href = 'continuous.html'; break; case 'backgroundVideo': window.location.href = 'videoBackground.html'; break; case 'normalScroll': window.location.href = 'normalScroll.html'; break; case 'scrolling': window.location.href = 'scrolling.html'; break; case 'navigationV': window.location.href = 'navigationV.html'; break; case 'navigationH': window.location.href = 'navigationH.html'; break; case 'fixedHeaders': window.location.href = 'fixedHeaders.html'; break; case 'gradientBackgrounds': window.location.href = 'gradientBackgrounds.html'; break; case 'apple': window.location.href = 'apple.html'; break; } }); });