$(function() { 
	 //REMOVE the dropdownbreaking titles
	 $('#nice-menu-1 a').each(function() {
					$(this).attr('title' , '');
	 }); 

	//Expandor/expandee collapsing
	$('.expandor').click(function() {
		$(this).next().slideToggle();
	});
	 
	//Round the corners, NOT for IE/Safari
	if ( $.browser.msie != true && $.browser.safari != true ) {
//		$('#primary-links ul li').corner('round top 5px');
//		$('.block').corner('round 5px');
	}

	//IE6 - fix the png's	
	if ( $.browser.msie == true && $.browser.version == '6.0' )  { 
		 $("img[src$=png]").pngfix();
	}
	


}); //End document.ready

