$(document).ready(function(){
$("a.gal").lightBox();

$(".bm").mouseenter(function() {
$(".open").fadeOut(200) ;
if ($(this).hasClass("subs")) {
off = $(this).offset() ;
rid = $(this).attr("rel");
$.post("/index.php?id=13",{pid:rid},function(data){$(".open").html(data).css("left",off.left+"px").fadeIn(200) ;})
}
})

	$(".clear").mouseenter(function() {
		$(".open").fadeOut(200) ;
	})

	$(".main").mouseenter(function() {
		$(".open").fadeOut(200) ;
	})
})

