$.fn.cycle.defaults.timeout = 2000;
$(function() {

    $('#slideShow').after('<div id="nav">').cycle({
	fx:    'fade', 
	delay: -1000,
	next:   '.nextSlide',
	prev:   '.prev',
	timeout: 0,
	cleartype:  1,
	speed:  'fast',
	pager:  '#nav',
        pagerAnchorBuilder: function(idx, slide) { 
         return '<a href="#">' + slide.title + '</a>'; 
       } 
    });

    $('.makeTabs').tabs({  });    

    //hide the all of the element with class msg_body
    $(".toggleContent").hide();
    //toggle the componenet with class msg_body
    $(".toggleBtn").click(function()
    {
         $(this).next(".toggleContent").slideToggle(600);
    });

	$('.hoverTable').tableHover({colClass: 'hover', cellClass: 'hovercell', clickClass: 'click'}); 

});
