/***********************************
* product.js
*
* Generates the tabs for product details
*
* @author eculver
* @version 1.0
* @since 09/11/08
************************************/

// when the page is done loading, generate tabs 
// within the product-details element
$(document).ready(function(){
    $("#product-details > ul").tabs();
});

