function getUrlParam(name) {  var name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  var regexS = "[\\?&]"+name+"=([^&#]*)";  var regex = new RegExp(regexS);  var results = regex.exec(window.location.href);  if (results == null)    return "";  else    return results[1];}$(document).ready(function () {	$('#cart_dropdown').css({"margin-left": -180 + ($('#topcart_summary').width()) - 198});	$('#cart_mask_position').css({"margin-left": -180 + ($('#topcart_summary').width()) - 198});	$('.cart_remove').live('click', function () {		$(this).removeClass('cart_remove').addClass('cart_remove_loading');		$.ajax({			type: 'post',			url: 'index.php?route=module/cart/callback',			dataType: 'html',			data: 'remove=' + this.id,			success: function (html) {				$('#module_cart .middle').html(html);				if (getUrlParam('route').indexOf('checkout') != -1) {					window.location.reload();				}				$('#cart_dropdown').css({"margin-left": -180 + ($('#topcart_summary').width()) - 198});				$('#cart_mask_position').css({"margin-left": -180 + ($('#topcart_summary').width()) - 198});				$('.more_btn').attr('src','catalog/view/theme/cyanideclothing/image/cart/arrow_up.png');				$('.cartcontents').css('top', '42px');				$('.more_btn').toggle(					function()					{						$('.cartcontents').animate({"top": -$(".cartcontents").height() - 20}, 300);						$('.more_btn').attr('src','catalog/view/theme/cyanideclothing/image/cart/arrow_down.png');					},					function()					{						$('.cartcontents').animate({"top": "42px"}, 300);						$('.more_btn').attr('src','catalog/view/theme/cyanideclothing/image/cart/arrow_up.png');					}					);			}		});	});	$('.addtocart').replaceWith('<a onclick="" class="button addtocart">' + $('.addtocart').html() + '</a>');      $('.addtocart').click(function () {      var pid = this.parentNode.id;      $.ajax({         type: 'post',         url: 'index.php?route=module/cart/callback',         dataType: 'html',         data: $('#'+this.parentNode.id+' :input'),         success: function (html) {            $('#module_cart .middle').html(html);         },            complete: function () {            var image = $('#img_'+pid).offset();            var cart  = $('#module_cart').offset();               $('#img_'+pid).before('<img src="' + $('#img_'+pid).attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');								$('#cart_dropdown').css({"margin-left": -180 + ($('#topcart_summary').width()) - 198});				$('#cart_mask_position').css({"margin-left": -180 + ($('#topcart_summary').width()) - 198});   			            params = {               top : cart.top + 'px',               left : cart.left + 'px',               opacity : 0.0,               width : $('#module_cart').width()/2,                 heigth : $('#module_cart').height()/2            };                     $('#temp').animate(params, 'slow', false, function () {               $('#temp').remove();            });				$('.cartcontents').css('top', -$(".cartcontents").height() - 20);				$('.more_btn').toggle(					function()					{						$('.cartcontents').animate({"top": "42px"}, 300);						$('.more_btn').attr('src','catalog/view/theme/cyanideclothing/image/cart/arrow_up.png');					},					function()					{						$('.cartcontents').animate({"top": -$(".cartcontents").height() - 20}, 300);						$('.more_btn').attr('src','catalog/view/theme/cyanideclothing/image/cart/arrow_down.png');					});					}               });            });	});$('.cartcontents').css('top', -$(".cartcontents").height() - 20);$('.more_btn').toggle(   function()   {      $('.cartcontents').animate({"top": "42px"}, 300);		$('.more_btn').attr('src','catalog/view/theme/cyanideclothing/image/cart/arrow_up.png');   },   function()   {      $('.cartcontents').animate({"top": -$(".cartcontents").height() - 20}, 300);		$('.more_btn').attr('src','catalog/view/theme/cyanideclothing/image/cart/arrow_down.png');});
