﻿$(document).ready(function() {

    //Iframe width 90% of browser width
    var h = $(window).height() * 0.90;
    //Maintain aspect ratio
    var w = h * 1.33;


    //Fancybox
    $("a.iframe").fancybox({
        'frameWidth': w,
        'frameHeight': h
    });
    $("a.videoFile").fancybox();
    $("a.mainBodyImage").fancybox();
    $("#Issue a.issueImage").fancybox();
    

    //Tip a friend slide
    $("#IconBarForm").hide();

    $("#ContentArea a.sendEmail").click(function() {
        $("#IconBarForm").slideToggle(250);
    });

    //Comments to articles
    $("#IconBarCommentsForm").hide();
    
    $("#ContentArea a.addComments").click(function() {
        $("#IconBarCommentsForm").slideToggle(250);
    });

});