var xOffset = 200;
var yOffset = -40;	
$(function(){
	
	/*
	var origImageSwap = $('#imageSwap div img').attr('src');
	$('#imageSwap a').unbind().bind('mouseover', function(){
		$('#imageSwap div img').attr('src', $(this).find('img').attr('src').replace('.jpg', '_image.jpg'));
	}).bind('mouseleave', function(){
		$('#imageSwap div img').attr('src', origImageSwap);
	});
	*/
	
	$('#tabButtons a').unbind().bind('click', function(){
		$('#tabButtons .active').removeClass('active');
		$('#tab1.active,#tab2.active,#tab3.active,#tab4.active,#tab5.active').removeClass('active');
		$(this).addClass('active');
		$($(this).attr('href')).addClass('active');
		return false;
	});
	
	/*
	var totalHeight = 0;
	$('#productGeneral form').children().each(function(){
		totalHeight = totalHeight + $(this).height();
	});
	$('#right').height(totalHeight - 80);
	*/
	
	$('#header .social a').unbind().bind('click', function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	if($('.lightbox').size())
		$('.lightbox').fancybox({'titleShow': false});
	
	if($('#productMainImage a').size())
		$('#productMainImage a').attr('href', $('#productMainImage a').attr('href').replace('javascript:popupWindow(\'', '').replace('\')', '')).fancybox({'titleShow': false});
	
	if($('#cartAdd').size()){
		var topOffset = ($('#cartAdd').offset().top) - ($('#main #left').offset().top + $('#main #left').height());
		$('#cartAdd').css('top', ((topOffset * -1) + 60));
		var totalHeight = ($('#main #left').offset().top + $('#main #left').height() + $('#cartAdd').height());
		$('#cartAdd').css('marginBottom', ($('#cartAdd').height() * -1))
	};
		
	if($('#createAcctDefault').size()){
		$('#createAcctDefault form fieldset:first').addClass('wall');
		$('#createAcctDefault form fieldset fieldset').wrap('<div class="brick"></div>');
		$('#createAcctDefault form .wall').masonry({
			itemSelector: '.brick'
		});
	};
	
	if($('#giftfinder').size()){
		$('#giftfinder a.toggleForm').unbind().bind('click', function(){
			$('#giftfinder .form').slideToggle(500);
			return false;
		});
	};
	
	$('.centerBoxContentsProducts .itemImage a img').removeAttr('title');			
	$('.centerBoxContentsProducts').hover(function(e){		
		if($(this).find('.popup').length == 1){						   
			$('body').append('<div id="tooltip"> ' + $(this).find('.popup').html() + '</div>');
			xOffset = $('#tooltip').height() + 16;
			$('#tooltip').css('top',(e.pageY - xOffset) + 'px').css('left', (e.pageX + yOffset) + 'px').fadeIn('fast');		
		};
    },
	function(){	
		$('#tooltip').remove();
    });	
	$('.centerBoxContentsProducts').mousemove(function(e){
		$('#tooltip').css('top',(e.pageY - xOffset) + 'px').css('left', (e.pageX + yOffset) + 'px');
	});		
	
	if($('h1').size() && $('h1').html().indexOf('Newsletter Subscription') != -1){
		$('#navigation ul li a').each(function(){
			if($(this).html().indexOf('ailing Lis') != -1){
				$(this).parent().addClass('current');
			};
		});
	};
	if($('#contactUsDefault').size()){
		$('#navigation ul li a').each(function(){
			if($(this).html().indexOf('ontact U') != -1){
				$(this).parent().addClass('current');
			};
		});
	};
	
	$('.messageStackError:first').addClass('firstError');
	$('.messageStackError:last').addClass('lastError');
	
	$('.itemImage a img').each(function(){
		$(this).css('left', (($(this).width() - $(this).parent().width()) / 2) * -1);
	});
	
});

$(window).load(function(){
	$('.itemImage a img').each(function(){
		$(this).css('left', (($(this).width() - $(this).parent().width()) / 2) * -1);
	});
	if($('#cartAdd').size()){
		if($('#cartAdd').offset().top < $('#main #left').outerHeight()){
			var topOffset = ($('#cartAdd').offset().top) - ($('#main #left').offset().top + $('#main #left').height());
			$('#cartAdd').css('top', ((topOffset * -1) + 60));
			var totalHeight = ($('#main #left').offset().top + $('#main #left').height() + $('#cartAdd').height());
			$('#cartAdd').css('marginBottom', ($('#cartAdd').height() * -1))
		};
	};
});
