// JavaScript Document
var $j = jQuery.noConflict();

$j(document).ready( function(){
  $j('#slideshow').cycle({ 
    fx:    'fade', 
    speed:  1500 ,
	timeout: 8000
 });
  $j('.rounded').corners("10px");
  $j('.rounded2').corners("10px top-left bottom-right");

  
  function addMega(){
  $(this).addClass("hovering");
  }
function removeMega(){
  $(this).removeClass("hovering");
  }
var megaConfig = {    
     interval: 500,
     sensitivity: 4,
	 over: addMega,
	 timeout: 500,
	 out: removeMega  
};

$j("li.mega").hoverIntent(megaConfig);
  
});
