/**
 * @author Giampiero Bonifazi
 */                                         

   // we will add our javascript code here
   var $j = jQuery.noConflict();
 
   $j(document).ready(function() {
   
      	
   $j('#spotlight').cycle({fx:'fade', speed: 1000, random:  1});
   $j('#spotlight_home').cycle({fx:'fade', speed: 1000, random:  0});
   $j('#slogan').cycle({fx:'scrollDown', speed: 5000, random:  1});
   $j('#slideshow').cycle({fx:'scrollRight', speed: 2000, random:  3});
   
   $j('#spotlight_home').show();
   $j('#slideshow').show();
   $j('#spotlight').show();
   
   $j("a").click(function() {
     // alert("This is an alert generated by JQuery library!");
   });
 });

   
