$(document).ready(function(){

    /*" +
    "hide elements pop-up/expanding elements 
    $('.fullText').hide();
    $('#accordian .accContent').hide();
    $('#accordian .accContent').eq(0).show();

//JS tabs 
$('.channels li a').click(function(event) {
	
	$('.jsTab').hide();
	var linkClass = $(this).attr("class");
	$("#" + linkClass).css({'position' : 'static', 'display' : 'block'});
	event.preventDefault();
});
*/
	//JS tabs 
	$('.channels li a').click(function(event) {
		$('.jsTab').hide();
		var linkhref = $(this).attr("href");
		$(linkhref).css({'position' : 'static', 'display' : 'block'});
		$(this).parent().parent().children('.selected').removeClass('selected');
		$(".channels li a[href='" + linkhref + "']").parent().addClass('selected');
		event.preventDefault();
	});
	
});
