// jquery makes me happy

$(document).ready(function()
{
		//$('img[@src$=.png], #panel').pngfix().pngunfix();
		$('img[@src$=.png]').pngfix();
});

// let jquery handle popups

$(document).ready(function()
{
   		// Let jquery handle slideshow
		$('.fade').innerfade
			({
				animationtype: 'fade',
				speed: 'slow',
				timeout: 4000,
				type: 'sequence',
				containerheight: '178px'
			});
});

$(document).ready(function()
{
	var profiles = 
	{
		800: 
		{
			height:800,
			width:800,
			status:1
		},
		200: 
		{
			height:200,
			width:200,
			status:1,
			resizable:0
		},
		popout: 
		{
			height:150,
			width:560,
			status:0,
			resizable:0
		}

	};

	// Find any <a href="" class="popup"></a> and pop it up
	$('a[@class^=popup]').popupwindow(profiles);

});