$(window).load(function(){


// class gageed 지정시 테두리 효과
$(".gageed").each(function(index){
	gageed = $(this);
	gageed.css({"position":"relative"});
	jQuery("<span/>").attr("class","gageed_1").css({
		"position":"absolute",
		"width":function(){return gageed.width()-2;},
		"height":function(){return gageed.height()-2;},
		"border":"1px #000 solid",
		"top":0,
		"left":0,
		"z-index":9
	}).appendTo(this);
	jQuery("<span/>").attr("class","gageed_2").css({
		"position":"absolute",
		"width":function(){return gageed.width()-4;},
		"height":function(){return gageed.height()-4;},
		"border":"1px #fff solid",
		"top":1,
		"left":1,
		"z-index":9
	}).appendTo(this);
});
$('.gageed_1,.gageed_2').fadeTo(0,0.3);


 
}); //(window).load : end

