$(document).ready(function(){

    //When mouse rolls over
    $("li.npoverlay").mouseover(function(){
        $(this).stop().animate({width:'905px'},{queue:false, duration:700, easing: 'easeOutExpo'})
    });

    //When mouse is removed
    $("li.npoverlay").mouseout(function(){
        $(this).stop().animate({width:'75px'},{queue:false, duration:700, easing: 'easeOutExpo'})
    });
	
	$("#rnplayer").mouseover(function(){
		$("div.text_l_options").stop().animate({height:'40px'},{queue:false, duration:300, easing: 'easeOutQuart'});
		$("span.text_l_tooltip").text("Use our web-based player for instant listening win.");
    });
	
	$("#rnplayer").mouseout(function(){
		$("#text_l_options").stop().animate({height:'20px'},{queue:false, duration:300, easing: 'easeOutQuart'})
    });
	$("#rngadget").mouseover(function(){
		$("#text_l_options").stop().animate({height:'40px'},{queue:false, duration:300, easing: 'easeOutQuart'});
		$("span.text_l_tooltip").text("If you're using Windows Vista/7, try our gadget for your desktop!");
    });
	
	$("#rngadget").mouseout(function(){
		$("#text_l_options").stop().animate({height:'20px'},{queue:false, duration:300, easing: 'easeOutQuart'})
    });
	$("#m3u").mouseover(function(){
		$("#text_l_options").stop().animate({height:'40px'},{queue:false, duration:300, easing: 'easeOutQuart'});
		$("span.text_l_tooltip").text("Got your own player? Fine, be that way. Here's the direct link.");
    });
	
	$("#m3u").mouseout(function(){
		$("#text_l_options").stop().animate({height:'20px'},{queue:false, duration:300, easing: 'easeOutQuart'})
    });
	
	$("div.cast_f_entry").mouseover(function(){
		$(this).stop().animate({height:'80px'},{queue:false, duration:200, easing: 'easeOutQuart'});
    });
	$("div.cast_f_entry").mouseout(function(){
		$(this).stop().animate({height:'28px'},{queue:false, duration:200, easing: 'easeOutQuart'});
    });
	
	$("div.cast_f_box").mouseover(function(){
		$(this).stop().animate({height:'105px'},{queue:false, duration:200, easing: 'easeOutQuart'});
    });
	$("div.cast_f_box").mouseout(function(){
		$(this).stop().animate({height:'86px'},{queue:false, duration:200, easing: 'easeOutQuart'});
    });
});
