/*-----------------------------------------------------------------------------
Web Site:			Casa Mia Pronto

LastChangedDate:	06.04.2009
LastChangedBy:		AnnaG
-----------------------------------------------------------------------------*/

function showPage(PageID){
   if(document.getElementById(PageID)) {
       // hide all, show page with PageID ------------------
       jQuery('.page').each(function(){
           if (jQuery(this).is("#" + PageID)) {
               jQuery(this).removeClass("hide");
           } else {
               jQuery(this).addClass("hide");
           }
       });
       return true;
   } 
   return false;
}

jQuery(document).ready(function() {

    var href = document.location.href.match(/.*#(.+)/);
    if(href) {
        // show page with PageID ------------------
        var PageID = href[1];
        showPage(PageID);

       // hide steps block ------------------
       jQuery('.steps-box').removeClass("step1");
       jQuery('.steps-box').removeClass("step2");
    } else {
        // hide all, show default ------------------
        showPage("show-default");
    }

    // click on switch link  ------------------
	jQuery(".top-nav a.switch").bind("click", function(e){
	    var PageID = jQuery(this).attr("href").match(/#(.+)/)[1];
        showPage(PageID);

       // hide steps block ------------------
       jQuery('.steps-box').removeClass("step1");
       jQuery('.steps-box').removeClass("step2");
    });

});
