// JavaScript Document
$(document).ready(function(){
/* hotRoll script */
				/*initialize hotRoll*/
			$('#hotpics').attr('src',$('#club_hotroll_content img:eq('+0+')').attr('src'));
			$('#club_hotroll_headtext span').text($('#club_hotroll_content li:eq('+0+')').text());
			$('#club_hotroll_hotHref').attr('href',$('#club_hotroll_content li a:eq('+0+')').attr('href'));
			$('#club_hotroll_buttons a:first').addClass('current');
				/*functionalize for each button*/
			$('#club_hotroll_buttons a').each(function(i){
				
				$(this).click(function(event){
								$('#hotpics').fadeOut('fast',function(){
								$('#hotpics').attr('src',$('#club_hotroll_content img:eq('+i+')').attr('src'));
								}).fadeIn('slow');
								$('#club_hotroll_headtext span').text($('#club_hotroll_content li:eq('+i+')').text());
								$('#club_hotroll_hotHref').attr('href',$('#club_hotroll_content li a:eq('+i+')').attr('href'));
								$('#club_hotroll_buttons a').removeClass('current');
								$(this).addClass('current');
								event.preventDefault();
											});
			
			});
			
			/*activate the roller*/
				var j = 1;
				$.extend({
				changeAuto:function(){
				if(j<$('#club_hotroll_buttons a').size()){
				$('#club_hotroll_buttons a:eq('+j+')').trigger('click');
				j++;
			}else{
				j = 0;
				$('#club_hotroll_buttons a:eq('+j+')').trigger('click');
				j++;
			}
				}
				});
			var autoSW = setInterval('$.changeAuto()',3500);
			/*enable or disable when user interact with it*/
			$('#club_hotroll_bg').mouseover(function(){clearInterval(autoSW);}).mouseout(function(){autoSW=setInterval('$.changeAuto()',3500);});
/*hotRoll End*/

});