/*
======================================================================
    
    Feature Module script v.10
    Requires jQuery 1.2.1 or above.
    
    By Neil Ford - www.neilford.net
    
======================================================================
*/       
    (function($) { //* hide the namespace       
        $(document).ready(function() {
	
            $("div#rep").replaceWith("<div id='featureModule'><a id='featureLink' href='http://www.mv-valkyrie.co.uk/contact'><img id='screen' src='http://www.mv-valkyrie.co.uk/wp-content/themes/valkyrie/featureImage1.jpg' alt='learn more about the MV-Valkyrie.' /></a><ul id='featureNav'><li id='featureNav1'><a id='fl1' class='here' href='http://www.mv-valkyrie.co.uk/wp-content/themes/valkyrie/featureImage1.jpg' title='learn more about the MV-Valkyrie'>The Boat</a></li><li id='featureNav2'><a id='fl2' href='http://www.mv-valkyrie.co.uk/wp-content/themes/valkyrie/featureImage2.jpg' title='learn more about the Diving'>The Diving</a></li><li id='featureNav3'><a id='fl3' href='http://www.mv-valkyrie.co.uk/wp-content/themes/valkyrie/featureImage3.jpg' title='Contact us to start your Orkney charter holiday.'>Get ready&hellip;</a></li></ul><span id='arrow'></span></div>");
        
        	$("#featureNav a").click(function(){
        	
        		var largePath = $(this).attr("href");
        		var largeAlt = $(this).attr("title");
        		var largeLink = $(this).attr("id");
        		
        		
        		
        		if(largeLink === "fl1"){
        		    $("#featureNav a").removeClass("here");
        		    $("#featureLink").attr({ href: "http://mv-valkyrie.co.uk/the-boat/" });
        		    $(this).addClass("here");
        		    
        		}
        		
        		if(largeLink === "fl2"){
        		    $("#featureNav a").removeClass("here");
        		    $("#featureLink").attr({ href: "http://mv-valkyrie.co.uk/scapa-flow/" });
        		    $(this).addClass("here");
        		}
        		
        		if(largeLink === "fl3"){
        		    $("#featureNav a").removeClass("here");
        		    $("#featureLink").attr({ href: "http://mv-valkyrie.co.uk/contact/" });
        		    $(this).addClass("here");
        		}

        		$("#screen").attr({ src: largePath, alt: largeAlt, title: largeAlt });
        		
        		return false;
        	});

                $("#screen").hover(function(){

                    $("#arrow").fadeIn("fast");

                },function(){

                    $("#arrow").fadeOut("slow");

                });
        	
        });
        })(jQuery); //* hide the namespace