jQuery(document).ready(function(){
    			
	// jCarousel
	jQuery('#mycarousel').jcarousel({ 
		scroll: 1,
		offset: 2,
		size: jQuery('#mycarousel li').length + 1
	});
    
    //remove bogus br from tinymce
    jQuery('#mycarousel .callout .cta_link br[mce_bogus=1]').remove();
    
	// toggle carousel links
	jQuery('#mycarousel .callout').hover(				
		function () {			
			jQuery(this).children('.cta_link').animate({ 
				bottom: '0'			
			});
		}, 
		function () {
			jQuery(this).children('.cta_link').animate({
				bottom: '-50'
			});
		}
	);	
	
	// footer rollovers 
	jQuery('#footer li.sub').hover(
		function(){
			jQuery(this).children('.hidden').fadeIn('fast');
		},
		function() { 
			jQuery(this).children('.hidden').fadeOut('fast');
		}
	);
			
});

