$(document).ready(function () {
	$('#banner').innerfade({timeout: 4000});
	$('#enq-form .textbox').focus(function () {
		var dval = $(this).prev().text();
		if($(this).attr('value') == dval) {
			$(this).attr('value','');
		}
	});
	$('#enq-form .textbox').blur(function () {
		var dval = $(this).prev().text();
		if($(this).attr('value') == '') {
			$(this).attr('value', dval);
		}
	});
	$('body').supersleight({shim: 'http://indiaindustries.co.in/images/x.gif'});
});
