jQuery(function(){

	jQuery("a.partner").click(function(){
		jQuery(this).toggleClass('open');
		jQuery('#' +  jQuery(this).attr('id') + "_d").slideToggle();
		window.location.hash = "load" + jQuery(this).attr('id');
		return(false);
	 });

	if(location.hash) {
		locId = location.hash.replace('load','');
		location.hash  = location.hash.replace('load','');
		if(jQuery(locId).length==1){  
			jQuery(locId).toggleClass('open');
			jQuery('#' +  jQuery(locId).attr('id') + "_d").slideToggle();
		}
	}
});

function popUp(URL) {
	window.open(URL, 'mh411', 'toolbar=1,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=900,height=400');
	return(false);
}
