//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->

$(document).ready(function() {
  $(function () {
    var tabContainers = $('div.tabs > div');
//     tabContainers.hide().filter(':first').show();
                        
      $('ul#navigation  a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('ul#navigation a').removeClass('active');
        $(this).addClass('active');
        return false;
      //}).filter(':first').click();
      });
  });
});
