function redirectPage() {
 window.location = linkLocation;
} 

$(document).ready(function() {
	/*---- DL Code ----*/
	
	
	$('a').click( function( event ){
		if( this.href == "" || this.href == null ) { event.preventDefault(); return; }
		if( (this.href.indexOf("#") == -1) && (this.href.indexOf("mailto:") == -1) && (this.href.indexOf("javascript:") == -1) && (this.target != "_blank")) {
			event.preventDefault();
			linkLocation = this.href;
			$("body").fadeOut(600, redirectPage);
		}
	}); 
	

	
});


$(function() {
	   
      $("<select />").appendTo("nav");


      $("<option />", {
         "selected": "selected",
         "value"   : "",
         "text"    : "Navigation"
      }).appendTo("nav select");
      
      // Populate dropdown with menu items
      $("nav a").each(function() {
       var el = $(this);
       $("<option />", {
           "value"   : el.attr("href"),
           "text"    : el.text()
       }).appendTo("nav select");
      });
      
      $("nav select").change(function() {
        window.location = $(this).find("option:selected").val();
      });
	 
});


$(window).load(function() {
    $('.flexslider').flexslider();
});



