// JavaScript Document

$(document).ready(function() {
    //CYCLE conferences
	$('.slideshow').cycle({
		fx: 'fade'
	});
	$('.slideshow_dos').cycle({
		fx: 'fade',
		timeout: 15000
		
	});
	 //CYCLE SPONSOR
	$('.sponsor').cycle({
		fx: 'scrollDown', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		sync:   0, 
    	delay: -5000
	});
	//Color Box plugin
	$(".colorBox").colorbox({width:"700px", height:"100%", iframe:true});
				$("#click").click(function(){ 
					$('#click').css({"background-color":"#f00", "color":"#ec4e00", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
					return false;
				});
});

