$(function() {
/*$('#toolbar').hide();
$("#toolbar-toggle").text('Open Navagation');*/

	$("#toolbar-toggle").toggle(
	  function () {
		$('#toolbar').hide();
		//$("#toolbar-toggle").text('Open Navagation');
		$("#toolbar-toggle").attr({ src: "http://www.alonzowest.com/images/up-arrow.png" });
	  },
	  function () {
		$('#toolbar').show();
		//$("#toolbar-toggle").text('Close Navagation');
		$("#toolbar-toggle").attr({ src: "http://www.alonzowest.com/images/down-arrow.png" });
	  }
	);

//#################################################################################
$("#about").newWindow({
	 windowTitle : "About Me",
	 content: "",
	 ajaxURL: "about.php",
	 width : 260,
	 height : 305,
	 posx : ((parseInt($(window).width()-270))),
	 posy : 20,
	 //posx : ((parseInt($(window).width())/2)-(260/2)),
	 //posy : ((parseInt($(window).height())/2)-(305/2)),
	 onDragBegin : null,
	 onDragEnd : null,
	 onResizeBegin : null,
	 onResizeEnd : null,
	 onAjaxContentLoaded : null,
	 statusBar: false,
	 minimizeButton: false,
	 minimizeIcon: "",
	 maximizeButton: false,
	 maximizeIcon: "",
	 closeButton: true,
	 closeIcon: "",
	 draggable: true,
	 resizeable: false,
	 resizeIcon: "#"
}); 
//#################################################################################

//#################################################################################
/*$("#blog").newWindow({
	 windowTitle : "My Blog",
	 content: "<iframe width='980px' height='500px' src='http://www.alonzowest.com/blog/' />",
	 windowType: "iframe",
	 width : 980,
	 height : 500,
	 posx : ((parseInt($(window).width())/2)-(980/2)),
	 posy : ((parseInt($(window).height())/2)-(500/2)),
	 onDragBegin : null,
	 onDragEnd : null,
	 onResizeBegin : null,
	 onResizeEnd : null,
	 onAjaxContentLoaded : null,
	 statusBar: false,
	 minimizeButton: false,
	 minimizeIcon: "-",
	 maximizeButton: true,
	 maximizeIcon: "   ",
	 closeButton: true,
	 closeIcon: "   ",
	 draggable: true,
	 resizeable: false,
	 resizeIcon: "#"
}); */
//#################################################################################

//#################################################################################
$("#contact").newWindow({
	 windowTitle : "Contact Me",
	 content: "",
	 ajaxURL: "contact.php",
	 width : 400,
	 height : 370,
	 posx : ((parseInt($(window).width())/2)-(400/2)),
	 posy : ((parseInt($(window).height())/2)-(370/2)),
	 onDragBegin : null,
	 onDragEnd : null,
	 onResizeBegin : null,
	 onResizeEnd : null,
	 onAjaxContentLoaded : null,
	 statusBar: false,
	 minimizeButton: false,
	 minimizeIcon: "-",
	 maximizeButton: false,
	 maximizeIcon: "O",
	 closeButton: true,
	 closeIcon: "   ",
	 draggable: true,
	 resizeable: false,
	 resizeIcon: "#"
}); 
//#################################################################################

//#################################################################################
$("#downloads").newWindow({
	 windowTitle : "My Downloads",
	 content: "",
	 ajaxURL: "downloads.php",
	 width : 700,
	 height : 400,
	 posx : ((parseInt($(window).width())/2)-(700/2)),
	 posy : ((parseInt($(window).height())/2)-(400/2)),
	 onDragBegin : null,
	 onDragEnd : null,
	 onResizeBegin : null,
	 onResizeEnd : null,
	 onAjaxContentLoaded : null,
	 statusBar: false,
	 minimizeButton: false,
	 minimizeIcon: "-",
	 maximizeButton: false,
	 maximizeIcon: "+",
	 closeButton: true,
	 closeIcon: "   ",
	 draggable: true,
	 resizeable: false,
	 resizeIcon: "#"
}); 
//#################################################################################

//#################################################################################
$("#sites").newWindow({
	 windowTitle : "My Sites",
	 content: "",
	 ajaxURL: "sites.php",
	 width : 700,
	 height : 400,
	 posx : ((parseInt($(window).width())/2)-(700/2)),
	 posy : ((parseInt($(window).height())/2)-(400/2)),
	 onDragBegin : null,
	 onDragEnd : null,
	 onResizeBegin : null,
	 onResizeEnd : null,
	 onAjaxContentLoaded : null,
	 statusBar: false,
	 minimizeButton: false,
	 minimizeIcon: "-",
	 maximizeButton: false,
	 maximizeIcon: "+",
	 closeButton: true,
	 closeIcon: "   ",
	 draggable: true,
	 resizeable: false,
	 resizeIcon: "#"
}); 
//#################################################################################

});