$(document).ready(function() {
    $("a[href*='http://']:not([href*='"+location.hostname+"'])").addClass("external").attr("target","_blank").attr("title","Opens new window");


    $("#mainNav li a").filter(function() {
        var currentURL = window.location.toString().split("/");

      return $(this).attr("href") == currentURL[currentURL.length-1];
    }).addClass("selected");

    var currentURL = window.location.toString().split("/");
    if ((currentURL[currentURL.length-1] == "") || (currentURL[currentURL.length-1] == "index.php")) {
        $("#mainNav li a:first").addClass("selected");
    }

	$('body#homepage #mainphoto').cycle({ 
		fx:     'fade', 
		speed:   1000, 
		timeout: 3000, 
		next:   '#s3', 
		pause:   1 
	});

});


