// JavaScript Document

$(document).ready( function() {
	$('#flashing-pictures').cycle({ 
		fx:    'fade', 
		speed:  4000 
	});
	
	var img_preview = $("#gallery li img");
	var str_imgs = '';
	img_preview.each( function(i) {
	
		str_imgs += "\""+this.src+"\" ";
	
	})
	
	str_imgs = trim(str_imgs);
	$.preloadImages(str_imgs);
	
	
	var sponsors = $("#logos-sponsor img");
	
	$.each(sponsors, function() {
	
		//$(this).css('opacity',.6);
		$(this).css('cursor','pointer');
		
		$(this).hover(
			function() {
				$(this).stop().fadeTo("slow", .5);
			},function(){
				$(this).stop().fadeTo('slow',1);
			}
		)
		
	})
	
})

var baseUrl = "";