﻿$(function(){
});

$(document).ready(function() {
	// Make the required adjustments to the slideshow display properties.
	$('#productList').attr('title', '');
	$('#productListTitle').remove();
	$('#slideShow').attr('title', 'PAUSED: Move mouse out of slide show area to resume.');
	$('#slideShow').removeClass('slideshow').addClass('sliceShowActive');
	
	if($.browser.msie && $.browser.version < 9){
		$('#productList').addClass('ieBoxShadow');
	}
	$('#slideShow').tipTip();
	
	var slideEffects = new Array(
		'cover',
		'uncover',
		'scrollUp',
		'scrollDown',
		'scrollRight',
		'scrollLeft',
		'turnUp',
		'turnDown'
	);
	var effectIndex = Math.floor(Math.random() * slideEffects.length);
    $('#slideShow').cycle({
		fx:slideEffects[effectIndex],
	    timeout:5000,
	    //delay:-1500,
	    pause:1
	});
	
	// Remove scrolling container on news block for mobile browsers.
	var agent = navigator.userAgent;
	if( agent.match(/Android/i) || agent.match(/webOS/i) ||
		agent.match(/iPhone/i) || agent.match(/iPod/i))
	{
		$('.scrollingNews').removeClass('scrollingNews');
	}
	
});

