$(document).ready(function() {

	$('#slideshow').bxSlider({
		mode : 'fade',
		auto : true,  // slides change automatically
		autoHover : true,  // pause on hover
		pager : true,  //  display a pager
		pagerType : 'full',    // 'full', 'short' - if 'full' pager displays 1,2,3... if 'short' pager displays 1 / 4
		controls : false,  //previous and next controls
		speed : 5000,  // integer - in ms, duration of time slide transitions will occupy
		pause : 5000,  // integer - in ms, the duration between each slide transition
		randomStart : false
	});

	setDropdownNav();
	setDefaultInputText();

	// misc
	$('.rr-cross-sell-buy a').text('Explore');
	$('#book').toggle('slow');
	$('.zebra-rows tr:odd').addClass('alt');

	// make entire div clickable
	$('div.clickable').click(function(event) {
		event.preventDefault();
		window.location = $(this).attr('url');
	});
	
	// create tabs on product page
	$('#product-tabs').tabs();
	
	// carousel on home page
  	$("div.scrollable").scrollable({'size': 1});

	// lightboxes
	$('a#zoom').fancybox({
		'overlayColor' : '#666666',
		'overlayOpacity' : '0.3',
		'titleShow' : false,
		'transitionIn' : 'fade',
		'transitionOut' : 'fade'
	});
	$('a#dialog').fancybox({
		'overlayColor' : '#666666',
		'overlayOpacity' : '0.3',
		'transitionIn' : 'fade',
		'transitionOut' : 'fade',
		'width' : 750,
		'height' : 425
	});
	$('a#dialog-small').fancybox({
		'overlayColor' : '#666666',
		'overlayOpacity' : '0.3',
		'transitionIn' : 'fade',
		'transitionOut' : 'fade',
		'width' : 400,
		'height' : 325
	});
	$('a#dialog-med').fancybox({
		'overlayColor' : '#666666',
		'overlayOpacity' : '0.3',
		'transitionIn' : 'fade',
		'transitionOut' : 'fade',
		'width' : 550,
		'height' : 400
	});
	$('a.dialog-review').fancybox({
		'overlayColor' : '#666666',
		'overlayOpacity' : '0.3',
		'transitionIn' : 'fade',
		'transitionOut' : 'fade',	
		'width' : 775,
		'height' : 600
	});

});

