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

function srcSwap($active){
	switch($active)
    {
    case 3:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/cruise/hero/cruise-med-large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getTourList.php?area=southWest&category=Mediterranean-Canaries-RedSea";
      break;
    case 4:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/cruise/hero/cruise-uk-dover-plymouth-southampton-tilbury.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getTourList.php?area=southWest&category=Local%20departures";
      break;
    case 5:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/cruise/hero/Special Offers large.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getTourList.php?area=southWest&category=Offers";
      break;
    case 2:
      	imgsrc = "http://www.dutwebhost.com/dutweb/newSite/img/cruise/hero/AI Cruises.jpg";
		imghref = "http://www.dutwebhost.com/dutweb/devsite/getTourList.php?area=southWest&category=All%20inclusive";
      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);			
	}
	
	
	
}