// JavaScript Document
$(document).ready(function(){

//first check the current month and set the css body background appropriately to either summer or winter

var d = new Date();
var curr_month = d.getMonth();

switch (curr_month)
{
   case 10: case 11: case 0: case 1: case 2: 
     $('body').css({ backgroundImage : "url(http://alpine.altfusion.co.uk/files/nodes/1a2f3012-1b17-4f9a-b7b3-3c64cee529d0/files/alpineOasis_VerticalPageBackgroundStripSnow.jpg)" });
   break;

   default: 
    $('body').css({ backgroundImage : "url(http://alpine.altfusion.co.uk/files/nodes/1a2f3012-1b17-4f9a-b7b3-3c64cee529d0/files/alpineOasis_VerticalPageBackgroundStripSummer.jpg)" });
   break;
}


//now check to see whether we are on a specific section i.e winter or summer, in which case specifically set the background
//regardless of season

var path = window.location.toString();
if(path.indexOf("summer_adventures")>0)
{
  $('body').css({ backgroundImage : "url(http://alpine.altfusion.co.uk/files/nodes/1a2f3012-1b17-4f9a-b7b3-3c64cee529d0/files/alpineOasis_VerticalPageBackgroundStripSummer.jpg)" });
}

if(path.indexOf("winter_adventures")>0)
{
  $('body').css({ backgroundImage : "url(http://alpine.altfusion.co.uk/files/nodes/1a2f3012-1b17-4f9a-b7b3-3c64cee529d0/files/alpineOasis_VerticalPageBackgroundStripSnow.jpg)" });
}

});