$(document).ready(function() {

	// LIGHTBOX
	$(function() {
		$("a[rel='jquery-lightbox']").lightBox({fixedNavigation:false});
	});
	
	// FEEDBACK
	$('.feedback').hide().fadeIn( 2000 );	

	// CYCLE
    $('#sponsors-carousel').cycle({
		fx:      'fade', 
    	speed:    800, 
    	timeout:  2000
    });
    $('#header-carousel').cycle({
		fx:      'fade', 
    	speed:    800, 
    	timeout:  5000
    });
	
	// FONT REPLACEMENT (CUFON)
	$('#content h1').css('font-size', '30px');	
	Cufon.replace('#content h1');
	$('#content-full-page h1').css('font-size', '30px');	
	Cufon.replace('#content-full-page h1');
	$('#sidebar-inner-wrapper h1').css('font-size', '30px');	
	Cufon.replace('#sidebar-inner-wrapper h1');    
    
    // SIDEBAR
    var msie6 = $.browser == 'msie' && $.browser.version < 7;
    if (!msie6) {
	    var top = $('#sidebar-inner-wrapper').offset().top - 10;
	    
	    $(window).scroll(function() {
	    	var y = $(window).scrollTop();
	    	if (y >= top) {
	    		$('#sidebar-inner-wrapper').addClass('fixed');
	    	} else {
	    		$('#sidebar-inner-wrapper').removeClass('fixed');    	
	    	}
	    });    
    }
    
	// SMOOTH SCROLLING
	$.localScroll();  

});
