$(document).ready(function() {
	$('.homeButton').css("visibility","visible");	
	$('.newsletter-header').css("visibility","visible");
    $('.promo-slideshow').cycle({
		fx: 'fade' // fade, scrollUp, shuffle, etc...
	});
    $('.newsletter-header').cycle({
		fx: 'scrollLeft' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		,timeout:8000
	});
});

//used for xinventory pages
$().ready(function() {
//display banner if dealer begins commetns with !!protection
	var comments = $('#productComments div, .InvComment a');
	comments.each(function() {
		if($(this).text().indexOf('!!protection ') == 0) {
			$('#protection ').show();
			$(this).text($(this).text().replace('!!protection ', ''));
		}
	});
//move some items
	var productInfoUl = $('#productInfo ul');
	if($('#productAccessories').length>0) {
		productInfoUl.append($('<li class="LiInvAcc"></li>'));
		$('.LiInvAcc').append($('#productAccessories div').addClass('boldBlack')).prepend('Accessories: ');
	}
	productInfoUl.append($('<li class="LiInvCom"></li>'));
	$('.LiInvCom').append(comments.addClass('boldBlack'));
	$('#productComments, #productAccessories').each(function() {$(this).remove();});
	
});

