/*
 * Transitions jQuery Fade.
 * By Kris Jonasson (http://krisjaydesigns.com) and (http://gdsweb.ca)
 * Copyright (c) 2009 kris jonasson
 * Licensed under the GNU3 Public License (http://www.gnu.org/copyleft/gpl.html)
*/

$(document).ready(function() 
{
		$( '.container' ).fadeIn("slow", 0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0);
                $('#nav li a,#reload a').click(function(){
                $('.container').fadeOut();
                 setTimeout("nav('"+this.href+"')",1000);
               return false;
       });
    });
function nav(href){
location.href=href;
};

/* END 
*/
