﻿/*
 * Wirepoint Media misc. gallery tool
 *
 * Copyright (c) 2009 Wirepoint Media, LLC (www.wirepointmedia.com)
 *
 * @Author: Chris Cox <chris.cox@wirepointmedia.com> 
 * @Date: 07-14-09
 * @version: 1.1 REV. 08-05-09
 */

 
/*
 * This function will create a downloadable link to a comp card. 
 */
 
 
 $(function(){
 
    //Always hide member login notice
    $("#siteMemberNoticeAreaWrapper").hide();
 
    //Do this only for galleries.  Check both classes to determin if logged in or not
    if ( $("#gallery-image-navigation").length > 0 || $(".picture-gallery-thumbnail-list").length > 0) {
     
        var name;
        if ( $("#content .document-title a").length > 0) {
            //When not logged in
            name = $("#content .document-title a").text();
        } else {
            //When logged in
            name = $.trim( $("#content .document-title").text() );
        }
        
        //Create link
        $("#content").prepend("<div class='download-comps'><a href='/storage/comps/" + name + ".jpg' target='_blank'><img src='/storage/download.png'/> Download " + name + "'s Comp Card</a></div>");
    }
 });