/*	default.js | De Geluksdruif
**	Lodewijk Schutte | Low
**	v1.0 | 20091106
**	---------------------------------------------------------------------- */

$(function(){
	
	// Add class to body tag
	$(document.body).addClass('js-on');
	
	if (window.devicePixelRatio) {
		$(document.body).addClass('webkit');
	}
	
	var enhanceInputField = function(el, msg) {

		$(el).attr('value', msg).focus(function(){
			if ($(this).attr('value') == msg) {
				$(this).attr('value', '');
			}
		}).blur(function(){
			if ($(this).attr('value') == '') {
				$(this).attr('value', msg);
			}
		});

	};
	
	enhanceInputField('#keywords', 'Zoekterm');
	//enhanceInputField('#list-email', 'Emailadres');
	
});
