var CONFIG_WIDTH_ACCESS;

$(document).ready(function(){
	CONFIG_WIDTH_ACCESS = jQuery('#special-access').width() - 5;
	
	jQuery('#special-access').hoverIntent(
		function(){
			jQuery('#special-access').animate({
				left: '+='+CONFIG_WIDTH_ACCESS
			}, 400, 'linear', function(){
				jQuery('#special-access').addClass('close');
			});
		},
		function(){
			jQuery('#special-access').animate({
				left: '-='+CONFIG_WIDTH_ACCESS
			}, 400, 'linear', function(){
				jQuery('#special-access').removeClass('close');
			});
		}
	);
	/*
	jQuery('#link-page-1315,#link-page-1316,#link-page-1311').click(function(){
		
		jQuery(this).next('ul').toggle('slow');
		
		if(jQuery(this).attr('id') == 'link-page-1311')
		{
			jQuery('#link-page-1315,#link-page-1316').next('ul').hide('slow');
		}
		else if(jQuery(this).attr('id') == 'link-page-1315')
		{
			jQuery('#link-page-1311,#link-page-1316').next('ul').hide('slow');
		}
		else
		{
			jQuery('#link-page-1311,#link-page-1315').next('ul').hide('slow');
		}
		
		return false;
	});
	*/
	jQuery('#selectRightNav').change(function(){
		var url = jQuery(this).val();
		
		if(url != '0')
		{
			document.location.href = url;
		}
	});
	
	if(jQuery.browser.msie){
		jQuery('#link-shop').hover(function(){
			jQuery(this).css('opacity', '0.8');
		}, function(){
			jQuery(this).css('opacity', '1');
		});
	}
});

