
// jQuery_Auto 0.9
// Automatic functions for webpages (using the wonderful jQuery library)

// Copyright: (c) 2006, Michal Tatarynowicz (tatarynowicz@gmail.com)
// Licenced as Public Domain (http://creativecommons.org/licenses/publicdomain/)
// $Id: jquery_auto.js 426 2006-05-06 19:54:39Z Michaﾅ・$


// prototype.js use $();
// jQuery       use j$();
jQuery.noConflict();
var j$ = jQuery;



// Mouse hover
j$(function(){
j$("a img").load(function(){
j$(this).fadeTo(100, 1.0);
});			
j$("a img").hover(
function(){
j$(this).fadeTo(200, 0.6);
},
function(){
j$(this).fadeTo(150, 1.0);
}
);
});


// Auto-submitting SELECTs
