$().ready(function() {
	// Initialize lightbox
	$('a[rel*=lightbox]').lightBox({
	imageLoading: '/CommonResources/Templates/Images/lightbox-btn-loading.gif',
	imageBtnClose: '/CommonResources/Templates/Images/lightbox-btn-close.gif',
	imageBtnPrev: '/CommonResources/Templates/Images/lightbox-btn-prev.gif',
	imageBtnNext: '/CommonResources/Templates/Images/lightbox-btn-next.gif'
	});
	
		/* Placeholder fallback */
	function hasPlaceholderSupport() {
	  var input = document.createElement('input');
	  return ('placeholder' in input);
	}

	if(!hasPlaceholderSupport()) {
		$('input[type=text]').val(function(){
		return $(this).attr('placeholder');
		});

	
		$('input[type=text]').focus(function() {
			if($(this).val($(this).attr('placeholder'))) { $(this).val(''); }
		});
		$('input[type=text]').blur(function() {
			if($(this).val('')) { $(this).val($(this).attr('placeholder')); }
		});
	}
});
