
//when document is loaded...
$(document).ready(function(){

	$('#block_cart_expand').click(function(){
			
			window.location = "/order.php";
	});
	

	$('#block_cart_expand').hover(function() {
		$('#block_cart_expand').addClass('hover_cart').removeClass('normal_cart');
	}, function() {
		$('#block_cart_expand').addClass('normal_cart').removeClass('hover_cart');
	});
	
	$('body#product a#add_to_cart').unbind('click').click(function(){
			$('body#product #buy_block').submit();
			return false;
		});
	
	/*
	// expand/collapse management
	$('#block_cart_collapse').click(function(){
			ajaxCart.collapse();
	});
	$('#block_cart_expand').click(function(){
			ajaxCart.expand();
	});
	*/
	
	/*
	$('#cart_block').hover(function() {
		ajaxCart.expand();
	}, function() {
		ajaxCart.collapse();
	});
	*/	


	
});

