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

function srcSwap($active){
	switch($active)
    {
    case 3:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-winter-sun-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getAirList.php?area=southWest&category=winter%20sun";
      break;
    case 4:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-summer-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getAirList.php?area=southWest&category=summer%20sun";
      break;
    case 5:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/exclusive-offers-large.jpg";
		imghref = "http://www.davidurquhart.com/fly/south_west/exclusive_offers";
      break;
    case 2:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/air/hero/air-cities-large.jpg";
		imghref = "http://www.davidurquhart.com/fly/south_west/city_breaks";
      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);			
	}
	
	
	
}