$(document).ready(function() {
    	    
    var tabContainers = $(".module-downloads-container");
    $(".module-downloads-nav a").click(function () {
        tabContainers.hide().filter(this.hash).show();

        $(".module-downloads-nav a").removeClass("selected");
        $(this).addClass("selected");
        
        return false;
    }).filter(":first").click();
    


   	var tabContainers2 = $(".module-videos-container");
   	$(".module-videos-nav a").click(function () {
   	    tabContainers2.hide().filter(this.hash).show();
   	    
   	    $(".module-videos-nav a").removeClass("selected");
   	    $(this).addClass("selected");
   	    
   	    return false;
   	}).filter(":first").click();



	$(".thumb-round").corner();



	$("ul.sf-menu").superfish(); 


    
});

