// JavaScript Document
jQuery.noConflict();

jQuery(document).ready(function(){
    initFrontpage();
});

function initFrontpage() {
    jQuery(".focus-pages .item, #content-right .sample").hover(function(){
        jQuery(this).addClass("over");
    }, function(){
        jQuery(this).removeClass("over");
    });
    
    jQuery(".focus-pages .item, #content-right .sample").click(function(){
        window.location = jQuery(this).find("a").attr("href");
    });
}
