
//toolbar menus
    $(document).ready(function() {
	  $('#podmenu').hide();
	  $('#radiomenu').hide();

        var hide = false;
        
        $("#radio-toggle").hover(function(){
	  		$('#podmenu').hide();
            if (hide) clearTimeout(hide);
            $("#radiomenu").fadeIn(80);
        }, function() {
            hide = setTimeout(function() {$("#radiomenu").fadeOut("fast");}, 150);
        });
        $("#radiomenu").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#radiomenu").fadeOut("fast");}, 150);
        });
        
        $("#pod-toggle").hover(function(){
	  		$('#radiomenu').hide();
            if (hide) clearTimeout(hide);
            $("#podmenu").fadeIn(80);
        }, function() {
            hide = setTimeout(function() {$("#podmenu").fadeOut("fast");}, 150);
        });
        $("#podmenu").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#podmenu").fadeOut("fast");}, 150);
        });
       
//episode alternate backgrounds
	  $(function(){
	    $('#episodes .zebra li:odd').addClass('stripe-odd');
	  });
	
//episode alternate backgrounds
	  $(function(){
	    $('#episode_actions li:odd').addClass('stripe-odd');
	  });


//for podcast menu columns
jQuery(document).ready(function($){
	$('.mcol').makeacolumnlists({cols: 4, colWidth: 205, equalHeight: 'ul', startN: 1});
}, function() {
		$('.mcol').makeacolumnlists({cols: 4, colWidth: 0, equalHeight: 'ul', startN: 1});
	});
});

$(document).ready(function() {

	//Select all anchor tag with rel set to tooltip
	$('a[rel=tooltip]').mouseover(function(e) {
		
		//Grab the title attribute's value and assign it to a variable
		var tip = $(this).attr('title');	
		
		//Remove the title attribute's to avoid the native tooltip from the browser
		$(this).attr('title','');
		
		//Append the tooltip template and its value
		$(this).append('<div id="tooltip"><div class="tipHeader"></div><div class="tipBody">' + tip + '</div><div class="tipFooter"></div></div>');		
				
		//Show the tooltip with fadeIn effect
		$('#tooltip').fadeIn('500');
		$('#tooltip').fadeTo('10',1);
		
	}).mousemove(function(e) {
	
		//Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
		$('#tooltip').css('top', e.pageY + 10 );
		$('#tooltip').css('left', e.pageX + 20 );
		
	}).mouseout(function() {
	
		//Put back the title attribute's value
		$(this).attr('title',$('.tipBody').html());
	
		//Remove the appended tooltip template
		$(this).children('div#tooltip').remove();
		
	});
});
