// JavaScript Document

/* -------------------------------------------------- */
/* smooth scroll */
/* -------------------------------------------------- */
(function(jQuery) {
jQuery.fn.scRoller = function() {
return this.each(function() {
jQuery(this).click(function() {
jQuery('html,body').animate({
scrollTop: jQuery(jQuery(this).attr("href")).offset().top
});
return false;
});
});
};
})(jQuery);
jQuery(function(){
jQuery("a[href^=#]").scRoller();
});

/* -------------------------------------------------- */
/* image roll over */
/* -------------------------------------------------- */
$(document).ready(function(){
$("img.link_img").fadeTo(0,1.0);
$("img.link_img").hover(function(){
$(this).fadeTo("fast",0.7);
},
function(){
$(this).fadeTo("fast",1.0);
});
});
