var num = 1;
var images = new Array('http://www.montanaxtreme.com/wp-content/themes/mtx/images/home.jpg', 'http://www.montanaxtreme.com/wp-content/themes/mtx/images/home2.jpg', 'http://www.montanaxtreme.com/wp-content/themes/mtx/images/home3.jpg');

function swap() {
	$('#homeContent').css('background', 'transparent url(' + images[num] + ') scroll no-repeat 0 0');
	if(num >= $(images).length){ num = 0; } else { num++; }
}

$(function() {
	$(document).ready(function() {
		if($('#homeContent')) {
			//var t = setTimeout("swap()", 4000);
			
		}

		if($('#prodBtn')) {
			$('#descBtn').click(function() {
				$('#directions').hide();
				$('#desc').show();
			});
			$('#direBtn').click(function() {
				$('#directions').show();
				$('#desc').hide();
			});
		}

		if($('#cleanprodnames')) {
			$($('.cleandesc').get(0)).show();
			$($('.cleanname').get(0)).addClass('active');
			$('.cleanname').click(function() {
				id = $(this).attr('id');
				$('.cleanname').removeClass('active');
				$(this).addClass('active');
				$('.cleandesc').hide();
				$('#desc_' + id).show();
			});

			$('#nextclean').click(function(){
				active = $('#cleanprodnames').find('.active').get(0);
				$next = $(active).next()

				if($next.length != 0) {
					$next.click();
				} else {
					$($('.cleanname').get(0)).click();
				}
			});
		}

		if($('#retailsearch')) {
			var select  = $('#retailsearch').find('select').get(0);
			$(select).change(function() {
				var state = $(this).val();
				var statestr = 'http://www.montanaxtreme.com/retailers/?state=' + state;
				window.location = statestr;
			});
		}
	});
});
