
$(document).ready(function(){
    //Carousel
    $(function(){
        $("div#carousel_inner").carousel({
            loop: true,
            effect: "fade",
            autoSlide: true,
            autoSlideInterval: 3000
        });
    });
    
    //Current page    
    $("div#nav li a").each(function(index){
        var hyperlink = $(this).attr("href");
        var browserURL = window.location.pathname;
        if (hyperlink == browserURL) {
            $(this).addClass("selected");
        }
    });
    
    //Current page sub nav  
    $("div#nav_pottersworld li a").each(function(index){
        var hyperlink = $(this).attr("href");
        var browserURL = window.location.pathname;
        if (hyperlink == browserURL) {
            $(this).addClass("selected");
        }
    });
    
    //Clear from fields when in focus
    $('.clearme').focus(function(){
        $(this).val("");
    });
});



