$(function(){
	$("ul#ticker01").liScroll({travelocity: 0.06});/* 0.9 is the speed of the motion */
});



$(document).ready(function(){ 

			$("a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed: 'normal', /* fast/slow/normal */
				padding: 40, /* padding for each side of the picture */
				opacity: 0.35, /* Value betwee 0 and 1 */
				showTitle: true, /* true/false */
				allowresize: true, /* true/false */
				counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
				theme: 'light_square', /* light_rounded / dark_rounded / light_square / dark_square */
				callback: function(){}
			});

			//cycle through images in the product detail page 
			$('#cycleDesign').cycle({ 
			   	fx:     'fade', 
				   speed:   500, 
				   timeout: 10000, 
				   next:   '#cycleDesign', 
				   pause:   1 
				   
			 });
			
	

			
					
	        //cycle through images within the ID div
	        $('#cycle').cycle({ 
			    fx:    'fade', 
			    pause:  5500 
			 });
						  
			 
			$('.pictureboxTwrapper').cycle({ 
			    fx:     'scrollUp', 
    			speed:   'fast', 
    			timeout: 0, 
    			next:   '#next2', 
    			prev:   '#prev2',
    			pause:   1
			 });	
			 			
	        	
}); 	

     			    