	jQuery(document).ready(function() {

			// for omniture tagging on V1.1 pages
			if(jQuery('#topic-of-interest').length > 0){
				jQuery('#btContinue').bind('click',function(){
					setTopicOfInterestCookie();
				});
			}
			
			if(jQuery('.editCarProfile').length > 0){
				jQuery('#btContinue').bind('click',function(){
					setCarProfileValideCookie();
				});
			}
			
			if(jQuery('.carProfile').length > 0){
				jQuery('#btContinue').bind('click',function(){
					setCarProfileEditCookie();
				});
			}
			
			
			if(jQuery('.editMyProfile').length > 0){
				jQuery('#btContinue').bind('click',function(){
					setMyProfileCookie();
				});
			}
			
			
			if(jQuery('#remove-cookie-aftersales').length > 0){				
				jQuery.cookie("youplus-aftersales", null);
			}

	});
