jQuery(document).ready(function($) {
	check_for_age();
	
	function check_for_age(){
		
		
		if(!jQuery.cookie("yourBarAgeControl")){
			jQuery('.age_control').show();
		} else if(jQuery.cookie("yourBarAgeControl") == '0'){
			// Er ist unter 18 !!
		} else if(jQuery.cookie("yourBarAgeControl") == '1'){
			// Er ist 18 !!
		}	
	}
	
	
	jQuery('#yes_age_but').click(function(){
		jQuery.cookie("yourBarAgeControl", "1", { expires: 365 });
		jQuery('.age_control').hide();
		window.location = "http://www.yourbar.de/";
	});
	
	
	jQuery('#no_age_but').click(function(){
		jQuery.cookie("yourBarAgeControl", "0", { expires: 365 });
		jQuery('.age_control').hide();
		window.location = "http://www.yourbar.de/index.php?cat=c3_Softdrinks.html";
	});
	
	
	
	
	
	
	

});
