$(document).ready(function(){
        
    shoutcast.rock();
    
    $('img.captify').captify({
		// all of these options are... optional
		// ---
		// speed of the mouseover effect
		speedOver: 'fast',
		// speed of the mouseout effect
		speedOut: 'fast',
		// how long to delay the hiding of the caption after mouseout (ms)
		hideDelay: 250,	
		// 'fade', 'slide', 'always-on'
		animation: 'slide',		
		// text/html to be placed at the beginning of every caption
		prefix: '» ',		
		// opacity of the caption on mouse over
		opacity: '1.0',					
		// the name of the CSS class to apply to the caption box
		className: 'caption-bottom',	
		// position of the caption (top or bottom)
		position: 'bottom',
		// caption span % of the image
		spanWidth: '100%'
	  });
	  
    $("#recent-blogpost").click(function () {
       $("#recent-blogpost-content").show();
       $("#socialsphere-content").hide();
       });

   $("#socialsphere").click(function () {
       $("#socialsphere-content").show();
       $("#recent-blogpost-content").hide();
       });
	  
});