/**
 * @author Jeroen
 */
$(document).ready(init);
function init(){

    $('A[rel="_blank"]').each(function(){
        $(this).attr('target', '_blank');
    });
    
    $('#home_icon').click(function(e){
        window.location = "index.php?page=home";
        e.preventDefault();
    });
    
    $('#events_icon').click(function(e){
        window.location = "index.php?page=events";
        e.preventDefault();
    });
    
    $('#photos_icon').click(function(e){
        window.location = "index.php?page=photos";
        e.preventDefault();
    });
    
    $('#contact_icon').click(function(e){
        window.location = "index.php?page=contact";
        
        e.preventDefault();
    });
    
}




