// JavaScript Document

jQuery(document).ready(function(){
	jQuery(document).ready(function(){
		jQuery(".eventBtn[rel]").overlay({mask: '#000', effect: 'apple'});
		
		jQuery('#rightCol .expand').toggle(
			function() {
				$(this).html('<a href="#" title="open">+</a>');
				jQuery('#rightCol').stop(true, false).animate({left: -145}, 'slow');
			}, // Executed on odd clicks
			function() {
                                $(this).html('<a href="#" title="close">-</a>');
				jQuery('#rightCol').stop(true, false).animate({left: 295}, 'slow');
				
			}
		); // Executed on even clicks
                
		//jQuery('#rightCol .expand').trigger('click');
		//jQuery(".eventBtn[rel]").trigger('click');
                
                jQuery(window).scroll(function(){
                    /*jQuery('#leftCol').height(jQuery(document).height());
                    jQuery('#middleCol').height(jQuery(document).height());*/
                    jQuery('#rightCol').height(jQuery(document).height());
                });
	});
});
