$(document).ready(function()
{
	slide("#navPrimary", 20, 5, 220, .8);
	
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

	 $('.fadeThis').hover(
        function () {
          $(this).animate({color:'#777777'}, {queue:false,duration:100});
        }, function () {
 $(this).animate({color:'#fff'}, {queue:false,duration:200});
  
});
	
	
	
});

function slide(navigation_id, pad_out, pad_in, time, multiplier)
{
	// creates the target paths
	var list_elements = navigation_id + " li.sliding-element";
	var link_elements = list_elements + " a";
	
	// initiates the timer used for the sliding animation
	var timer = 0;
	
	// creates the slide animation for all list elements 
	/*
	$(list_elements).each(function(i)
	{
		// margin left = - ([width of element] + [total vertical padding of element])
		$(this).css("margin-left","0px");
		// updates timer
		timer = (timer*multiplier + time);
		$(this).animate({ marginLeft: "0" }, timer);
		$(this).animate({ marginLeft: "15px" }, timer);
		$(this).animate({ marginLeft: "0" }, timer);
	});
*/
	// creates the hover-slide effect for all link elements 		
	$(link_elements).each(function(i)
	{
		$(this).hover(
		function()
		{
			$(this).animate({ paddingLeft: pad_out }, 220);
		},		
		function()
		{
			$(this).animate({ paddingLeft: pad_in }, 220);
		});
	});
}

//swfObject	
var flashvars = {};
var params = {};
var attributes = {};
attributes.id = "flashLogo";
swfobject.embedSWF("fla/tlf_logo.swf", "flashLogo", "400", "150", "9.0.0", "fla/expressInstall.swf", flashvars, params, attributes);	
	