/*----------------------------------------------------------------------
Author: Infigo Media
Client: Max Powder
Date: Jan 2012
-----------------------------------------------------------------------*/
(function($){$.fn.extend({modal:function(){var mOverlay=$('<div id="modal"><div class="wrapper"><span class="close"></span></div></div>');var mWindow=$('<div class="contents"></div>');return this.each(function(){$(this).click(function(e){$('body').prepend(mOverlay.click(function(){mHide();}))
mOverlay.show();var img=new Image();$(img).load(function(){mWindow.append(img);$("#modal .wrapper").append(mWindow);mWindow.show();}).attr({src:this.href}).click(function(){mHide();});e.preventDefault();$(document).keydown(handleEscape);});});function mHide(){$(document).unbind('keydown',handleEscape)
mOverlay.remove();mWindow.remove().empty();};function handleEscape(e){if(e.keyCode==27){mHide();}}}});})(jQuery);$(function(){$('html').addClass('js');$('a[rel*=modal]').modal();});if($.browser.msie&&$.browser.version<=8){$('a').each(function(){$(this).attr('hideFocus','true').css('outline','none');});}
