$(function(){

	/* Carousel Init*/
	
    $('.carousel').cycle({
    
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		
	});
	
	
	
	
	
	
	/* IE Hand Holding */
	
	if($.browser.msie) {
	
		$('#top-menu ul li:last-child, footer ul li:last-child').css('border-right', '1px solid #b8e7e7');
		$('aside ul li:last-child').css('border-bottom', '1px solid #b8e7e7');
		
	}
	
	
	
	
	
	
	/* Logo Navigation */
	
	$('#logo').click(function(){
	
		window.location = 'http://www.bearspawlc.ca';
		
	});

	
	
	
	
	
	
	/* Scroll Bars */
	
	//$('#content').jScrollPane();
	
	//$('.jspDrag').height( $('.jspDrag').height() - 8);
	
	
	
	
	
	
	/* Cloud Behavior */
	
	// Fade out on click, come back in 4 seconds
	$('.cloud').live('click', function(){
	
		$(this).fadeOut().delay(4000).fadeIn();
		
	});
	
	
	
	
	
	
	
	/* Event Binding */
	
	// Bind window resize to re-initialising jscrollpane
	$(window).bind('resize', function(){
	
		$('#content').jScrollPane();
		
	});
	

});
