
$(document).ready(function(){
$(" #key > div> a > img").hover(function(){

img = $(this).attr("src");
$( this ) .attr( "src" , img.replace( /_off/ig , "_on" ) );

},function(){
img = $(this).attr("src");
$( this ) .attr( "src" , img.replace( /_on/ig , "_off" ) );

});

//
$("#banspace > a > img").hover(function(){
$(this).fadeTo("fast",0.5);
}
,
function(){
$(this).fadeTo("fast",1);
});

$("#support > a > img").hover(function(){
$(this).fadeTo("fast",0.5);
}
,
function(){
$(this).fadeTo("fast",1);
});


$("input").click(function(){

color = $(this).css("background-color");
if( color == 'rgb(225, 244, 254)'){
$(this).css("background","#FFF");
}else{
$(this).css("background","#E1F4FE");
}

});

//
$("#itemtitle > div > span").animate({top:"0px"},1000,function(){$("#itemtitle > div > h2").fadeTo(1500 , 1 );});
//


});


//
