//only works with ipod section due to the selector used
jQuery(document).ready(function() {
    anchor.init()
});

anchor = {
    init : function()  {
        //have the img clickable so that it doesn't interfere with the ipodlayout.js button code
        jQuery(".controlButton a img").click(function () {   
            elementClick = jQuery(this).parent().attr("href")
            destination = jQuery(elementClick).offset().top;
            jQuery("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 700 );
            return false;
        })
    }
}
