var giclee_message = "";
var variance = 0;

giclee_message += "<div id=\"giclee_description\">";
giclee_message += "[Close]<br/><br/><strong>What is a Giclee Print?</strong>";
giclee_message += "<p>Giclee (pronounced \"gee-clay\") Prints</p>";
giclee_message += "<p>Giclee prints are created from high-resolution digital images, using the best quality ink and paper stock available. This process results ";
giclee_message += "in color resolution that far exceeds any other type of image printing.</p>";
giclee_message += "<p>Giclee prints are generated on a pair of 8-color Epson 9600 ink jet printers. These printers are able to produce amazingly detailed prints ";
giclee_message += "of both works of fine art and photographs. For our print jobs we exclusively use Epson Ultrachrome ink, which is of archival quality. This guarantees ";
giclee_message += "you a long-lasting museum quality work of art.";
giclee_message += "</div>";
        
function toggle_giclee() {
    if( $( '#giclee_description' ).length > 0 ) {
        $( '#giclee_description' ).toggle();
    }
    else {
        $( '#framing_area_options' ).prepend( giclee_message );
        $( '#giclee_description' ).css( {
            position : 'absolute',
            zIndex : 500,
            borderWidth : '2px',
            borderColor : '#000000',
            borderStyle : 'solid',
            backgroundColor : '#dddddd',
            padding : 5
        } );
    }

    $( '#giclee_description' ).click( function() {
        if( $( this ).css( 'display' ) == 'block' ) {
            $( this ).toggle();
        }
    } );

    return false;
}