$(document).ready(function(){
	$(".lit_body_item").mouseover(function(){
		//$(this).html($(this).attr("ID"));
		var cssObj = {
				"background-image" : "url(images/depts/isr/front/front-" + $(this).attr('ID') + ".jpg)"
		}

		$(this).css(cssObj);
	});
	$(".lit_body_item").mouseout(function(){
		var cssObj = {
				"background-image" : "url(images/depts/isr/front/front-" + $(this).attr('ID') + "_blur.jpg)"
		}
		$(this).css(cssObj);
	});

	$('#BodyCopy img').removeClass('photo');

	$('input#LIT-CatalogSearch').focus(function(){
		if($(this).attr('value') == $(this).attr('defaultValue'))
		{
			$(this).attr('value',''); 
		}
	});
	$('input#LIT-CatalogSearch').blur(function(){
		if($(this).attr('value') == '')
		{
			$(this).attr('value', $(this).attr('defaultValue')); 
		}
	});



});
