jQuery.noConflict();
    jQuery(document).ready(function() {

					jQuery('.menu').supersubs({
				            minWidth:    12,   // minimum width of sub-menus in em units
				            maxWidth:    27,   // maximum width of sub-menus in em units
				            extraWidth:  1     // extra width can ensure lines don't sometimes turn over
				                               // due to slight rounding differences and font-family
				        }).superfish();


jQuery("div.shopping-cart-wrapper").livequery(function(){
				                		form_values = "ajax=true";
				                		jQuery.post( 'index.php?wpsc_ajax_action=get_cart', form_values, function(returned_data) {
                             eval(returned_data);
					                		});
              		});

  jQuery(".btn-slide").click(function(){
				jQuery("#panel").slideToggle("slow");
				jQuery(this).toggleClass("active"); return false;
		});

  jQuery("a.commenta").click(function(){
				jQuery('#comment-post').slideDown('fast');
				
		});
		
 });

