$(document).ready(function(){

var trans=new Array('lindX',
'blindY',
'blindZ',
'cover',
'curtainY',
'fadeZoom',
'growY',
'scrollDown',
'scrollHorz',
'shuffle',
'slideY',
'toss',
'turnDown',
'turnRight',
'uncover',
'wipe',
'zoom')

  var rand_no = Math.random();
  rand_no = rand_no * trans.length;
  rand_no = Math.ceil(rand_no);

  $('#our_products').cycle({
  fx:     trans[rand_no],
  timeout: 3000,
  delay:  -3000,
  speed: 1000
  });


});


