// JavaScript Document

$(document).ready(function(){

$(".windowed").click(function(){

var thetitle = this.href.substring(this.href.length-3,this.href.length) ;


	$(this).windowMaker(
	{
	ajax:true,
	contents: $(this).attr("href"),
	width:175,
	height:75,
	offsetX:10,
	offsetY:-15,
	padding:5,
	side:"left",
   	controlsColor:"#FFFFFF",			/* The color of the title and close controls with default skins*/
	backgroundColor:"#003366",			/* The color of the dialog with default skins*/
	contentTextColor:"#003366",		/* The color of the content text with default skins*/
 	contentBackgroundColor:"#ddd",	/* The color of the content background with default skins*/
	title:"Viewing: "+thetitle,
	windowBorder:"1px solid #ddd"
	});
	return false;
});


});//end ready