
jQuery.noConflict();
jQuery(document).ready(function(){ 
		jQuery(document).pngFix(); 
}); 
// JavaScript Document
jQuery(document).ready(collapsibleBoxes);


function collapsibleBoxes(){
	 jQuery("#title1").hover(function(){
       jQuery("#text1").fadeIn();
    }, function(){
       jQuery("#text1").fadeOut();
    });
	 
	 jQuery("#title2").hover(function(){
       jQuery("#text2").fadeIn();
    }, function(){
       jQuery("#text2").fadeOut();
    });
	 
	 jQuery("#title3").hover(function(){
       jQuery("#text3").fadeIn();
    }, function(){
       jQuery("#text3").fadeOut();
    });
	
	 jQuery("#addtofav").click(function(){
		if (document.all)
			window.external.AddFavorite(location.href, document.title);
		else if (window.sidebar)
			window.sidebar.addPanel(document.title, location.href, "");
    });
	 
}




