/*!
 * Bloooming Shop Plugin v1.0
 * http://www.bloooming.com/
 *
 * Copyright 2010, Tina Coric
 * All rights reserved
 *
 * Date: Thu May 20 22:22:22 2010 -0500
 */
$(document).ready(function(){
	
	//$('.wooo').bloooming_shop();
	
	$('#list7').append('<div id="panel"><div id="panelcontent"></div><div class="panelbutton" id="hidepanel" style="display: none;"><a>HIDE CART</a></div></div>');
	$('#panelcontent').hide();
	
	$.ajax({
		type: "GET",
		url: "./cart.php",
		async: false,
		dataType: "html",
		success: function(html){
			$('#panelcontent').html(html);
		}
	});
	
	$(".panelbutton").click(function(){
		//alert("test");
		
		$("#panel").animate({
			height: 'show'
		}, 5000,function(){
			$("#panelcontent").show();
		});
		
		/*$('#book').animate({
    opacity: 0.25,
    left: '+=50',
    height: 'toggle'
  }, 5000, function() {
    // Animation complete.
  });*/


		$("#hidepanel").fadeIn();
		$("#showpanel").fadeOut();
	
	});	
	
   $("#hidepanel").click(function(){
		$("#panel").animate({
			height: "hide"
		}, "fast", function(){ 
			$("#showpanel").fadeIn();
			$('#panelcontent').hide();
		});
		
		$("#hidepanel").fadeOut();
   });	

}); // document




