jQuery.noConflict();
(function($) { $(function() {

//*****************************************************************************************************
// Default Input Texts
//*****************************************************************************************************
function defaultInputValues(node, defaultValue) {
	node.val(defaultValue);
	node.focus(function() {
		if ($(this).val() == defaultValue) {
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val() == "") {
			$(this).val(defaultValue);
		}
	});
}
defaultInputValues($("#signup-form input[type=text]"), "e-mail address...");

//*****************************************************************************************************
// Textshadow
//*****************************************************************************************************
$(".yellow-box h3").textShadow({
	x: 1, 
	y: 1, 
	radius: 2,
	color: "#666"
});
$(".yellow-box__button").textShadow({
	x: 1, 
	y: 1, 
	radius: 2,
	color: "#000"
});

}); })(jQuery);
