// JavaScript Document
$(document).ready(function() {
///////////////////////////////////////////////////////////////////	

//Home promo initial setup
$('#home_promo .home_promo_item:eq(3)').css({'margin-right':'0', width:'215px'});
$('#home_promo .home_promo_item:eq(0) .tab').css('background','url(/common/refresh/img/background/home_promo_tab1.png) no-repeat 0 0');
$('#home_promo .home_promo_item:eq(1) .tab').css('background','url(/common/refresh/img/background/home_promo_tab2.png) no-repeat 0 0');
$('#home_promo .home_promo_item:eq(2) .tab').css('background','url(/common/refresh/img/background/home_promo_tab3.png) no-repeat 0 0');
$('#home_promo .home_promo_item:eq(3) .tab').css({'background':'url(/common/refresh/img/background/home_promo_tab4.png) no-repeat 0 0','margin':'0','width':'0'});
$('#home_promo .home_promo_item:eq(3) .promo_content').css(
	{
		'background' : 'url(/common/refresh/img/background/home_promo4_bg.png) no-repeat 100% 0',
		'width'        : '215px'
	}
);
$('#home_promo .home_promo_item#locator').addClass('open');

//Home promo sliding functionality
$('#home_promo .home_promo_item .tab').click(function() {
	$('#home_promo .home_promo_item:eq(0) .tab').css(
		{
			'background' : 'url(/common/refresh/img/background/home_promo_tab1_open.png) no-repeat 100% 0'
		});
	$('#home_promo .home_promo_item:eq(0)').animate(
		{
			'margin-left' : '-9px'
		}, { duration: 500, queue: false });
	$('.promo_content').animate(
		{
			width   : '0'
		}, { duration: 500, queue: false });
	$('.home_promo_item').animate(
		{
			width   : '58px'
		}, { duration: 500, queue: false });
	$(this).parent('.home_promo_item').children('.promo_content').animate(
		{
			width     : '795px'
		}, { duration: 500, queue: false });
	$(this).parent('.home_promo_item').animate(
		{
			width   : '853px'
		}, { duration: 500, queue: false });
	$('#home_promo .home_promo_item:eq(3) .tab').animate(
		{
			width : '58px'
		}, { duration: 500, queue: false });
	$('.home_promo_item').removeClass('open');
	$(this).parents('.home_promo_item').addClass('open');
	
	var content_width = $(this).parent('.home_promo_item').children('.promo_content').width();
	if (content_width > 0) {
		$('#home_promo .home_promo_item:eq(3) .tab').animate(
			{
				'width' : '0'
			}, { duration: 500, queue: false });
		$('#home_promo .home_promo_item:eq(3)').animate(
			{
				'width' : '215px'
			}, { duration: 500, queue: false });
		$('#home_promo .home_promo_item:eq(3)').children('.promo_content').animate(
			{
				width : '215px'
			}, { duration: 500, queue: false });
		$(this).parent('.home_promo_item').animate(
			{
				width : '58px'
			}, { duration: 500, queue: false });
		$(this).parent('.home_promo_item').children('.promo_content').animate(
			{
				width : '0'
			}, { duration: 500, queue: false });
		$('#home_promo .home_promo_item:eq(0)').animate(
			{
				'margin-left' : '0'
			}, { duration: 500, queue: false });
		$('#home_promo .home_promo_item:eq(0) .tab').css(
			{
				'background' : 'url(/common/refresh/img/background/home_promo_tab1.png) no-repeat 0 0'
			});
		$('.home_promo_item').removeClass('open');
	}
});

$('#home_promo .home_promo_item:eq(3) .tab').click(function() {
	$(this).animate(
		{
			'width' : '0'
		}, { duration: 500, queue: false });
	$(this).parent('.home_promo_item').animate(
		{
			width : '215px'
		}, { duration: 500, queue: false });
	$(this).parent('.home_promo_item').children('.promo_content').animate(
		{
			width : '215px'
		}, { duration: 500, queue: false });
	$('#home_promo .home_promo_item:eq(0)').animate(
		{
			'margin-left' : '0'
		}, { duration: 500, queue: false });
	$('#home_promo .home_promo_item:eq(0) .tab').css(
		{
			'background' : 'url(/common/refresh/img/background/home_promo_tab1.png) no-repeat 0 0'
		});
});

///////////////////////////////////////////////////////////////////
});
