$(document).ready(function(){
	
	//clear form on focus
	$('.wstform').focus(function(){
		if($(this).val()==$(this).attr('title')){
			$(this).val('');
		}
	});
	$('.wstform').blur(function(){
		if($(this).val()==''){
			$(this).val($(this).attr('title'));
		}
	});
	
	//light box
	$('#gallery a').lightBox();
	$('.zoomimg').lightBox();
	
});