/**
 * Scripts for jQuery
 * @author lukwoz@poczta.onet.pl
 * modified kevin@geomantics.com
 */

$(document).ready(function() {
    $('#search_field, #search_field_on_page').focus(function() { $(this).val(''); }).blur(function() { $(this).val('Search...'); });

	// Removed .blur(function() { $(this).val('insert your email here'); }) as this results in invalid email address submitted
	// ('insert your email here' is sent due to onblur being actioned before submit)
    $('#newsletter_field, #newsletter_field_on_page').focus(function() { $(this).val(''); });
	
	$(function() {
		$('a[rel*=lightbox-page]').lightBox({overlayBgColor :'#100'}); // Select all links that contains lightbox in the attribute rel
	});
});
