$(function(){
	window.SRN = {
		init:function(){

			if (typeof $.jqm != "undefined") {
				$('div#jqModal').jqm({
					trigger: 'a#send_photo',
					target: '#jqmContent',
				    	onShow:  function(hash){
						  hash.t.blur();
						
						  $("iframe", $(hash.w)).attr('src', $(hash.t).attr('href'));
						
				          hash.w.fadeIn('slow');
					},
					onHide: function(hash) {
						hash.w.fadeOut('slow',function(){ hash.o.remove(); $("iframe", $(hash.w)).hide(); });
					}
				});
				$('iframe#jqmContent').load(function(){ $(this).fadeIn('slow'); });
			}

		}
	};
	
	SRN.init();
})