﻿$(function() {
    $('a.email').defuscate();
    $('.lblzipcode').labelOver('over');
    
    $('a[title=View Picture]').click(function() {
        $.prompt('<img src="' + BASE_DIR + 'exclusiveoffers/offer.aspx/' + $(this).attr('rel') + '/view_picture_full">', {
            buttons:{Close:true}
		    ,opacity: '0.7'
            ,overlayspeed: 'fast'
            ,prefix: 'prompt'
            ,promptspeed: 'slow'
            ,show: 'fadeIn'
        });
        return false;
    });
});