try{
$(document).ready(function(){
	$("#prd").mouseover(function(){
			$('#txt').slideDown('slow', function() {
			}).css({left:$("#prd").offset().left+2, top: $("#prd").offset().top+10, width: $("#prd").width()-20});

		});
	$(".test").mouseover(function(){
		$("#txt" + $(this).attr("name").replace(/prd_image/,"")).slideDown().css({left:$(this).offset().left+2, top: $(this).offset().top+10, width: $(this).width()-20});;
	});
	$(".test").mouseout(function(){
		$("#txt" + $(this).attr("name").replace(/prd_image/,"")).slideUp();
	});
	$("#prd").mouseout(function(){
			$("#txt").slideUp();
		});
	if(document.getElementById("gallery")){
        $('#gallery a').lightBox();
	}
	});
}
catch(e){}
