// Tales of Creativity
// Gareth Davies
// 14th April 2008

$(document).ready(function(){

	// this function controls the navigation effects using jQuery

	$(".nav-link").each(function(i){
    		
    	var link = $(".nav-link").find("#b" + i);
		
		$(link).fadeTo(2000, 0.6);
			
		$(link).bind ("mouseover", function(){
			
			$(link).fadeTo(1000, 1.0);
			
		});
			
		$(link).bind ("mouseout", function(){
					
			$(link).fadeTo(2000, 0.6);
					
		});
    		
	});
	
	// this controls the scrolling
	
	$('#pane1').jScrollPane({showArrows:true});
	$('#pane2').jScrollPane({showArrows:true});
	
	// this starts facebox
    
    jQuery('a[@rel*=facebox]').facebox();
    jQuery('a[@rel*=searchbox]').facebox();
    
    //
    
    
    
});