$(document).ready(function(){
	
	var numRand = Math.floor(Math.random()*6);
	$('.testimonials').cycle({
	startingSlide: numRand,
	fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    speed:    300, 
    timeout:  12000,
    cleartype:  1 
});
	
    // png fix for ie6    
    $('body').supersleight({shim: 'ui/js/x.gif'});

    // bulleted list item hover
    $("ul.bullets li").hover(function() {
      $(this).css('background-position','0 -28px');
    }, function() {
      $(this).css('background-position','0 8px');
    });
    
    //
	

  

});
  


