/* Author: VVI */

$(document).ready(function(){
	var images = ['Dak_bg1.jpg', 'Dak_bg2.jpg'];
	
	$('<img src="http://dakretail.com/wp-content/themes/Dakretail/images/' + images[Math.floor(Math.random() * images.length)] + '">').appendTo('#bg');
	
	$('#homeslide').cycle({ 
		next:   '#hsnext', 
   	prev:   '#hsprev',
		fx: 'scrollRight',
		sync: 0,
		speed:  1000,
		timeout: 6000, 
		cleartype: true, 
		cleartypeNoBg: true
	});
	
	$('#clientrotate').before('<div id="cnav">').cycle({
				fx: 'fade',
				cleartype: true, 
				cleartypeNoBg: true,
				speed: 500,
				timeout: 7000,
				pager:  '#cnav'
			});
	
	var fadeDuration = 150; //time in milliseconds
      
      $('ul#menu-home-sidebar li a').hover(function() {
        $(this).animate({ paddingLeft: '25px' }, fadeDuration);
        $(this).children('span').show().animate({ left: -5 }, fadeDuration);
      }, function() {
        $(this).animate({ paddingLeft: '5px' }, fadeDuration);
        $(this).children('span').animate({ left: -25 }, fadeDuration).fadeOut(fadeDuration);          
      });
			
	  
	});
