jQuery(document).ready(function(jQuery) {
			
			// Fix background images on all A elements
			$("a").pngfix();
			
			// Fix background images on all A elements
			$(".nav li a img").pngfix();
			
			// Fix background images on all A elements
			$(".nav_background").pngfix();
			
			
			//open windows without embedding target="_blank"
 			 $('a[@rel$=external]').click(function() {
   			 this.target = "_blank";
 			 });
 			 
 			 
 			 //collapse all messages
			$(".message_all a.display").click(function(){
				$(".acc_body").slideDown(500)
				return false;
			});
			
			//collapse all messages
			$(".message_all a.collapse").click(function(){
				$(".acc_body").slideUp(500)
				return false;
			});
			

			$(" h3.acc_top ").click(function(){
					$(this).next(".acc_body").slideToggle(500)
					return false;
					
			});
 			 	
        		$('.roi2 tr td.pink_row input').css({'color':"#fff"});

 			 
		});
