// JavaScript Document


$(document).ready(function() {
	
	//Fade Imges Links	
	$("a img").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
		$("a img").hover(function(){
		$(this).fadeTo("fast", 0.85); // This should set the opacity to 100% on hover
		},function(){
		$(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
	});
		
	// ACTIVATE DYNAMIC SCROLL
	$.localScroll();							
	
	// ACTIVATE SLIDE SHOW
	//jquery.malsup.com/
	$('#banner').cycle({ 
	fx:     'scrollRight', 
    //easing: 'bounceout', 
    //delay:  -2000 
	//fx:    'cover',
	speed:    1000, 
    timeout:  5000,
	randomizeEffects: 1,
	random:  1
	});

});