			
		$(document).ready(function() {			
			//FORM VALIDATIONS FOR PRODUCT CHOICES
			$('#mascara').submit(function() {
				if ($('input:radio', this).is(':checked')) {
					//cool
			} else {
				$('#mascara span').css('background-color','yellow');
				return false;
			}
			});
			
			$('#chiselBlush').submit(function() {
				if ($('input:radio', this).is(':checked')) {
					//cool
			} else {
				$('#chiselBlush span').css('background-color','yellow');
				return false;
			}
			});
			
			$('#powderChisel').submit(function() {
				if ($('input:radio', this).is(':checked')) {
					//cool
			} else {
				$('#powderChisel span').css('background-color','yellow');
				return false;
			}
			});
		});