<!--toggle player header begin-->

$(document).ready(function(){
                $(".btn-slide").click(function(){
                $("#panel").slideToggle("slow");
                $(this).toggleClass("active"); return false;
                });
});

<!--toggle player header end-->


<!-- tool tips start-->

$(function(){
    $(".toolpop").tipTip({maxWidth: "auto", edgeOffset: 10});
});

<!--tool tips end-->


<!--menu nav begin-->

$(document).ready(function() {

	$("ul#topnav li").hover(function() { //Hover over event on list item
		
		$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});

});

<!--menu nav end-->


<!--accordian include start-->

	$(function() {
		$( "#accordion" ).accordion();
	});
	
<!--accordian include end-->


<!--popup fancybox includes begin-->

		$(function() {
			$("a#bsoulpop").fancybox({
				'overlayShow'	: true,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'overlayColor'		: '#000000',
				'overlayOpacity'	: 0.4,
				'titlePosition'		: 'inside',
				'autoScale'			: false
			});
		});
	 
<!--popup fancybox includes end-->



