// no conflicts with other frameworks
var $j = jQuery.noConflict();

// setup profiles for various popups
var profiles = {
	blank:{height:800,width:800,status:1,toolbar:1},
	window200:{height:200,width:200,status:1,resizable:0},
	windowCenter:{height:300,width:400,center:1}
};


//
// window.onload function to setup various javascripts
//
$j(function() {

	//fix png transparency in IE<6
	$j('img[@src$=.png]').ifixpng();

	// For popup windows set a class="popup" and rel="profilenameyouwantuse"
//	$j('a[@class^=popup]').popupwindow(profiles);

});
