$(document).ready(function() {

    current_home_frame = 0;
    home_frames = new Array(
        $('#frame_1'),
        $('#frame_2'),
        $('#frame_3'),
        $('#frame_4')                          
        /* REMEMBER LAST ONE NEVER HAS A COMMA! */
        
	);

	/* bind left/right arrows to shift frames */
	
		$('#home-box-arrow-left').unbind('click').bind('click',function(){
			current_home_frame -= 1;
			if(current_home_frame < 0 ) current_home_frame = home_frames.length-2;
			jump_to_home_frame(current_home_frame);
		});
		
		$('#home-box-arrow-right').unbind('click').bind('click',function(){
			current_home_frame += 1;
			if(current_home_frame > home_frames.length-2 ) current_home_frame = 0;
			jump_to_home_frame(current_home_frame);
		});

		function jump_to_home_frame(i) {
			current_frame = i;
			var destination = home_frames[i].position().left * -1;
			$('#home-box-content-rcol .mask ul').css('left',destination+'px');
		}
		
		/* HOLIDAY ADDITION BELOW */
		
		$('#new-celebrate-box-arrow-left').unbind('click').bind('click',function(){
			current_home_frame -= 1;
			if(current_home_frame < 0 ) current_home_frame = home_frames.length-2;
			jump_to_home_frame(current_home_frame);
		});
		
		$('#new-celebrate-box-arrow-right').unbind('click').bind('click',function(){
			current_home_frame += 1;
			if(current_home_frame > home_frames.length-2 ) current_home_frame = 0;
			jump_to_home_frame(current_home_frame);
		});

		function jump_to_home_frame(i) {
			current_frame = i;
			var destination = home_frames[i].position().left * -1;
			$('#new-celebrate-box-content-rcol .mask ul').css('left',destination+'px');
		}
		
});

