/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
    DD_roundies.addRule('.linkButton', 5, true);
    DD_roundies.addRule('.popup', 5, true);

    $(".linkButton").mouseover(function () {
            $(this).addClass("state-hover");
        }).mouseout(function () {
            $(this).removeClass("state-hover");
        });

    $(".navButton li").mouseover(function() {
        $(this).addClass('state-hover');
    })
    .mouseout(function(){
        $(this).removeClass('state-hover');
    })
    .click(function() {
        var anchor = $(this).children('a');
        if (anchor.length > 0)
            document.location = $(anchor).attr('href');
    });

    $('.screen img').click( function() {
        var i = $(this).attr('src');
        window.open( i, '_blank');
    })
});
