jQuery.noConflict();
jQuery(document).ready(function() {
	// Remove label in email capture field and make input wider if the browser supports the placeholder attribute
	if(Modernizr.input.placeholder) {
		jQuery('#wp_email_capture label').css('display', 'none');
		jQuery('#wp_email_capture input[type=text]').each(function() {
			var w = parseInt(jQuery(this).css('width'));
			jQuery(this).css('width', w*1.4 + 'px');
		});
	}
});
