arr_placeholder_field = [ '#search_box', '#contact_name', '#contact_email', '#contact_message' ];

placeholder_event_click = function() {
	$(this).val('');
	$(this).unbind('focus', placeholder_event_click);
};

$( function() { 

	$.each( arr_placeholder_field, function(k, v) {

			// Handle changing the value attribute for browsers that properly support the "placeholder" attribute
			if( "placeholder" in document.createElement('input') ) {
				$(v).val('');
			}
			else { // As well as for browsers that do not properly support the "placeholder" attribute
				$(v).focus(placeholder_event_click);
			}

		} );


	$('input:checkbox').css(
		{
			'border':'none',
			'background':'none'
		}
	);

});

