function reminder(){
	$('div.wrapper').before('<div id="reminder"><div id="close"></div><p title="Return to the Flannel Store window to complete your order">Please don\'t forget to finish your order at the Flannel Store!</p></div>'); 
	$('#close').live('click', closeReminder);
	
	$('ul.TopRight li a').each(function(){
		var link=$(this).attr('href');
		$(this).attr('href',link+'?from=store');
	});
	
	$('#carousel a').each(function(){
		var link2=$(this).attr('href');
		$(this).attr('href', link2+'?from=store');
	});
	
	$('div.title a').each(function(){
		var link3=$(this).attr('href');
		$(this).attr('href', link3+'?from=store');
	});	
}
function closeReminder(){
	$('#reminder').slideUp('slow', 'easeInOutExpo');
	$('ul.TopRight li a').each(function(){
		var link=$(this).attr('href');
		link=link.replace('?from=store','');
		$(this).attr('href',link);
	});
	
	$('#carousel a').each(function(){
		var link2=$(this).attr('href');
		link2=link2.replace('?from=store','');
		$(this).attr('href', link2);
	});
	
	$('div.title a').each(function(){
		var link3=$(this).attr('href');
		link3=link3.replace('?from=store','');
		$(this).attr('href', link3);
	});
}
