function fadeOut(){
	$('#mainImage').fadeOut(1750);
}

function srcSwap($active){
	switch($active)
    {
	 case 3:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/exclusive-offers-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/air/airList.php?area=scotland&category=Exclusive offer";
      break;
	case 4:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-jersey-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getAirList.php?area=scotland&category=jersey";
      break;
	case 5:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-cities-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getCityBreaks.php?area=scotland";
      break;
     case 6:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-winter-sun1112-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/air/contactUs.php?winterSun1112=true";
      break;
	case 7:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-FamilyFriendly-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getAirList.php?area=scotland&category=Family%20Friendly";
      break;
    case 2:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-summer-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getAirList.php?area=scotland&category=summer%20sun";
      break;
   }
	$('#mainImage').attr({ src: imgsrc });
	$('#mainLink').attr({ href: imghref });
}

function fadeIn(){
	$('#mainImage').fadeIn(2000);
}

function slideSwitch($active) {
	/*if($.browser.mozilla){
		setTimeout("fadeIn()",2200);
	    setTimeout("srcSwap("+$active+")",100);
		$('#mainImage').fadeOut(2000);
	}else{*/
	    setTimeout("fadeIn()",2000);
	    setTimeout("srcSwap("+$active+")",1950);
			$('#mainImage').fadeOut(2000);			
	//}
	
	
	
}
