jQuery(document).ready(function() {    $(".liHoverOD").click(function(){    	$(".liHoverOD").each(function(){           $(this).css("outline","none");    	});    	$(this).css("outline","solid 2px #FF7200");    	var bpAttr = $(this).children().children().attr("bpAttr");    	var picDesc = $(this).children().children().attr("picDesc");        var imgID = $(this).children().children().attr("imgID");        $("#curPicID").val(imgID);		$("#bigDiv").fadeIn("slow");		$("#pictureDesc").text(picDesc);		var bigPic = bpAttr;		var ScreenWidth = $(window).width()-800;		var ScreenHeight = $(window).height()-633;		var LefFinal = ScreenWidth / 2;		var TopFinal = ScreenHeight / 2;		var bbooddyy = $(document).scrollTop();		var ttt = TopFinal + bbooddyy;		var ttt2 = parseInt(ttt);		$("#mainDivIDOD").css({left: LefFinal+"px", top: TopFinal+"px"});		$("#mainDivIDOD").css("//top", ttt2+"px");		$("#mainDivIDOD").fadeIn("slow");		$("#mainDivIDOD").show();		$("#bigPicHereOD").html("<img class=\"closeBigPicOd\" src=\""+bigPic+"\" style=\"width: 774px;\">");		$(".closeBigPicOd").click(function(){	      $("#bigDiv").fadeOut("slow");	      $("#mainDivIDOD").hide();		});    });    $(".closeAllOD").click(function(){      $("#bigDiv").fadeOut("slow");      $("#mainDivIDOD").hide();	});    $(".liHoverOD:first").css("outline","solid 2px #FF7200");});