$(function(){
	/*if (navigator.cookieEnabled) {
        var cookieVal = readCookie("popoutShown");
        var popoutShown = (cookieVal != null && cookieVal.toLowerCase() == "true");
        
        if (!popoutShown) {
            createCookie("popoutShown", "true", null);
            $('#magshoppod').css( {
				left:'-101px',
				width:'410px'
			} );
			
			$('#magshoppod .opened').stop(true, true).animate( {
				left:'0px'
			}, 500 );
        }
    }*/


	$('#magshoppod .closed').click(
		function(){ 
			$('#magshoppod').css( {
				left:'-101px',
				width:'410px'
			} );
			
			$('#magshoppod .opened').stop(true, true).animate( {
				left:'0px'
			}, 500 );
			
		}
	);
	
	$('#magshoppod .opened').click(
		function(){
			$(this).stop(true, true).animate( {
				left:'410px'
			}, 500,
				function() {			
					$('#magshoppod').css( {
						left:'0px',
						width:'309px'
					} );
				}
			);
		}
	);
});


