// JavaScript Document

$(document).ready(function() {
	
	
	$('.promos .panel').find('.links .entry').find('a').click(function() {
		$(this).parents('.links').find('a').removeClass('on');
		$(this).addClass('on');
		var selectedEntry = $(this).text()-1;
		$(this).parents('.panel').find('.tab').each(function(i) {
			if(i == selectedEntry)
			{
				$(this).removeClass('hide');
				$(this).addClass('show');
			}
			else
			{
				$(this).removeClass('show');
				$(this).addClass('hide');
			}
		});
		return false;
	});
	
	$('.promos .panel').each(function() {
		$(this).find('.tab').each(function(i) {
			if(i > 0)
			{
				$(this).addClass('hide');
			}
			else
			{
				$(this).addClass('show');
				$(this).parent('.panel').find('.links').find('a:first').addClass('on');
			}
		});
	});
	
});