﻿$(document).ready(function() {
	$(".txtInput").focusin(function() {
		var txt = $(this).val();
		$(this).data('name',txt);
		$(this).val("");
	}).focusout(function() {
		var txt = $(this).data('name');
		if($(this).val()=='') {
			$(this).val(txt);
		}
	}).keypress(function() {
		$(this).removeClass('txtInput');
	});
});

$(function() {
	$('a.lightbox').lightBox(); // Select all links with lightbox class
});