$(document).ready(function() {
  
  	//banner
 	 $('.tgp_slide .right').cycle({fx: 'fade', timeout: 2000, speed: 3000});
  
	  $('.tgp_slide .left ul li a').hover(function(){
		  $('.tgp_slide .right').cycle('pause');
			  $(this).siblings('img').fadeIn();
		 },		  
		function() {
		  $('.tgp_slide .right').cycle('resume');
				$(this).siblings('img').fadeOut();
		  });
	  /*
	  // caption
        $('div.caption:eq(0)> div').hide(); 
        $('div.caption:eq(0)> h2').click(function() {
          $(this).next().slideToggle('fast');
		  	return false;
        });
		*/
});






