// JavaScript Document
$(document).ready(function(){
	$('div#links >ul > li').mouseover(function(){
		$(this).find('div').css("display","block");
	});
	$('div#links >ul > li').mouseout(function(){
		$(this).find('div').css("display","none");
	});
	$(".imgbox > a >img,.imgbox_ > a > img").each(function () {
			  var hi=$(this).height();
			if(hi==0){
			 	$(".imgbox > a >img,.imgbox_ > a > img").load(function(){
					$(this).css("margin-top",((101-$(this).height())/2));
					$(this).css("margin-left", ((167-$(this).width())/2)); 
				});
			}else{
			  $(this).css("margin-top",((101-$(this).height())/2));
			  $(this).css("margin-left", ((167-$(this).width())/2)); 
			  }
		});
	
});
