// MINICART REMOVE FUNCTION
function mcRemoveLinks() {
	$(".delprod").unbind("click").click(function() {
		theLink = $(this);
		
		$.get(theLink.attr("href"),function(responseText) {
			theLink.parents(".minicart_prod").slice(0).animate({
				height:  "hide",
				opacity: "hide"
			},function() {
				$("#minicartinner").load("inc_minicart_content.asp?reload=2",function() {
					
					// REATTACH
					mcRemoveLinks();	
				});
			});
		});
		
		return false;
	});
}
$(document).ready(function() {
	// MINICART REMOVE FUNCTIONALITY
	mcRemoveLinks();
	
	$('.header_minicart_link').live('click', function(){
		$('.header_minicart_link').toggleClass('mini_link_active');
		$('#minicart_detail').slideToggle();
		return false;
	});

	
});