//Tabs/////////////////////////////

$(document).ready(function(){
    $(".tabs").tabs();
  });
  
  
  
//Colorbox/////////////////////////////

$(document).ready(function(){
	$(".gallery").colorbox();
});


//Tablesorter/////////////////////////////

$(document).ready(function() 
    { 
        $("#content table").tablesorter({widgets: ['zebra']}); 
    } 
); 

//Footer Popup/////////////////////////////

jQuery(document).ready(function($) {
  $(".open").hover( 
    function () {
      $("> .up", this).fadeIn('fast');
    },
    function () {
      $("> .up", this).fadeOut('fast');
    }
  ); 
  

});
