$(document).ready(function() {
// NOTIFICATION AREA FOR AJAX CALLS AND ERRORS
	$('<div id="growl"><div id="basic-template"><a class="ui-notify-cross ui-notify-close" href="#">x</a><h1>#{title}</h1><p>#{text}</p></div></div>').appendTo('body').notify({
	    speed: 500,
	    expires: 5000
	});
// SKIN EDITOR
  	var skinEditorIframe = $('<iframe style="width:100%;height:100%;border:none"></iframe>');
	var skinEditorDialog = $('<div id="wz_skineditor" style="margin:0; padding:0; overflow:hidden"></div>').html(skinEditorIframe)
	.dialog({
		autoOpen: false,
		title: "Skin Manager",
		width: $(window).width() * .5,
		height: $(window).height() * .9,
		position: [ Math.floor($(window).width() * .4), Math.floor($(window).height() * .05) ]
	});

	$(".mediaList a").fancybox();
	$("a.fancybox").fancybox();
	$('form.f7_form').f7Form();
	$('#wz_skinLauncher').click(function(){
		skinEditorIframe.prop('src',"/core/pages/edit/skinmanager.php");
		skinEditorDialog.dialog('open');
		return false;
	});

});
