﻿$(document).ready(function(){
    
    $('a[rel*=external]').click( function() {
        window.open(this.href);
        return false;
    });
    
    $("#Intro_download .download_box").hover(
        function() { $("div.download_box_info p:first", this).slideDown(200); },
        function() { $("div.download_box_info p:first", this).slideUp(200); }
    );
    
    $("#Intro_download .download_box_info").css("cursor", "pointer").click(function() {  
        window.location = $(this).find("h3:first a:first").attr("href");  
    }); 
    
    $("div.scrollable").scrollable({
        size: 1
    });
    
});