/**
 * @author silvia
 */

 $(document).ready(function(){
	
	//generic cookie creation function
	function createCookie(name,value,days) {
		if (days) {
			var date = new Date();
			date.setTime(date.getTime()+(days*24*60*60*1000));
			var expires = "; expires="+date.toGMTString();
		}
		else var expires = "";
		document.cookie = name+"="+value+expires+"; path=/";
	}		
	//kill simplecart cookie
	$(".logOutWrapper a").click(function(){
		createCookie("simpleCart","",-1);
	});
	
 });
