//IE6 pngFix


$(function(){
$('a img').mouseover(
function() {
$(this).fadeTo("fast", 0.7);
});
$('a img').mouseout(
function() {
$(this).fadeTo("fast", 1.0);
});
});


$(document).ready(function(){


    $('a[href^=#top]').click(function(){
        var target;

        target = $( $(this).attr('href') );

        if (target.length == 0) {
            return;
        }

        $('html, body').animate({scrollTop: target.offset().top});

        return false;
    });
});



