// SnapHire - Coke Careers - 031210

$(document).ready(function() {

// career path	
	$(".career_path").attr('rel', 'career_group').fancybox({
		'overlayOpacity' : 0.3
	});
	$(".product_list").attr('rel', 'product_group').fancybox({
		'overlayOpacity' : 0.3
	});
	$(".talent_referral").attr('rel', 'talent_group').fancybox({
		'overlayOpacity' : 0.3
	});
	$(".gameon_link").attr('rel', 'gameon_group').fancybox({
		'overlayOpacity' : 0.3
	});
	$("#tips").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
// recruitment process
// tabs
	$(".tab_content").hide(); 
	$("ul.tabs li:first").addClass("active").show(); 
	$(".tab_content:first").show(); 

	//On Click Event
	$("ul.tabs li").click(function() {

		$("ul.tabs li").removeClass("active"); 
		$(this).addClass("active"); 
		$(".tab_content").hide(); 

		var activeTab = $(this).find("a").attr("href"); 
		$(activeTab).fadeIn(); 
		return false;
	});



// accordion
	$('.processMain').hide(); 
	$('.processHeader:first').addClass('active').next().show(); 
	
	
	$('.processHeader').click(function(){
		if( $(this).next().is(':hidden') ) { 
			$('.processHeader').removeClass('active').next().slideUp('fast'); 
			$(this).toggleClass('active').next().fadeIn('slow'); 
		}
		return false; 
	});

	$('.processMain2').hide(); 
	$('.processHeader2:first').addClass('active').next().show(); 
	
	
	$('.processHeader2').click(function(){
		if( $(this).next().is(':hidden') ) { 
			$('.processHeader2').removeClass('active').next().slideUp('fast'); 
			$(this).toggleClass('active').next().fadeIn('slow'); 
		}
		return false; 
	});

		
// company info
	$('#scrollbar1').tinyscrollbar({ sizethumb: 15 });

});
