$(function() {
	var searchBox = $('#txtRedirectSearchBox');
	searchBox
		.css('width', '125px')
		.val('Search')
		.focus(function () { $(this).val(''); });

	/////////////////////////////////////////////////////////////////////////////
	//
	var FeaturedItemsThumbnails = $('.FeaturedItemsThumbnail img');
	//FeaturedItemsThumbnails.aeImageResize({ height: 120, width: 120 });
	//FeaturedItemsThumbnails.resize({ scale: 0.5, maxWidth: 120, maxHeight: 120 });
	//FeaturedItemsThumbnails.fadeIn();
	FeaturedItemsThumbnails.attr('width', '120');
	//$(window).load(function() { $('#dvWrapControl32').css('visibility', 'visible'); });
	/////////////////////////////////////////////////////////////////////////////
	
	/////////////////////////////////////////////////////////////////////////////
	//
	var ProductDetailsPhoto = $('.ProductDetailsPhoto img').first();
	ProductDetailsPhoto.attr('width', '320');
	//ProductDetailsPhoto.aeImageResize({ height: 320, width: 320 });
	//ProductDetailsPhoto.resize({ scale: 0.5, maxWidth: 120, maxHeight: 120 });
	/////////////////////////////////////////////////////////////////////////////
	
	
	// Hides the "different from billing address" option
	$('#rblSameAsBillingAddress_1').parent().hide();
	
});



$(function() {
	var _goToPanel = 1;
	var _currentPanel = _goToPanel;
	roll(_goToPanel);
	
	function roll(panel) {
		_currentPanel = panel;				
		$('#pnlRoll' + panel).fadeIn(1000, function() {
			setTimeout(function() { $('#pnlRoll' + panel).fadeOut(1000); }, 7000);
		});
		for (var i = 1; i < 4; i++) // change the 4 to 5 when 4th promo is created
			$('#pnlControlBtn' + i).removeClass('selected');
		$('#pnlControlBtn' + panel).addClass('selected');
		_goToPanel++;
		if (_goToPanel > 3) // change back to 4 when 4th promo is created
			_goToPanel = 1;
	}

	setInterval(function() { roll(_goToPanel); }, 8000);

	$('#pnlRollControls').click(function() {
		var _url;
		if (_currentPanel == 1) _url = 'http://www.shopbargainworks.com/store/c/106-Marine-Speakers.aspx';
		if (_currentPanel == 2) _url = 'http://www.shopbargainworks.com/store/c/30-Car-Audio-Video-GPS.aspx';
		if (_currentPanel == 3) _url = 'http://www.shopbargainworks.com/store/Search.aspx?SearchTerms=GPS';
		//alert(_currentPanel);
		location.href = _url;
	});
});

