// Author:              Matt Rossi
// Website:             ifohdesigns.com
// Article Source:      http://ifohdesigns.com/blog/tutorials/
// Last Modified:       August 26, 2008


$(document).ready(function() {

$(".radio").click(function(){

	if ($("#radio_player").is(":hidden")) 
      
	{
    $("#radio_player").load('player.asp').slideDown("slow");
	$(this).addClass("active");
        $.cookie('showTop', 'collapsed');
	return false;
	
    } else {
    $("#radio_player").slideUp("slow");
	$(this).removeClass("active");
        $.cookie('showTop', 'expanded');
	return false;

    }
});

// COOKIES
    // Header State
    var showTop = $.cookie('showTop');

    // Set the user's selection for the Header State
    if (showTop == 'collapsed') {
	$("#radio_player").load('player.asp').show();
	$(".radio").addClass("active");
	
    };
 
});