	$(document).ready(function(){
   	
   		$(".rounded").corner("10px");
   		$(".textContent").corner("tl 5px").corner("bl 5px");
   		
   	      
   		
       
       $(".largeLogoList a").hover(function(){
       	$that = this;
       	$("#iPS").attr({src : 'images/' + $that.id});
       	     	
          
       });
          
          
        $("#applicationTitle li a").click(function(){
       		$(".textBox").hide().filter(this.hash).show();
       		return false;
       		       		
       	}).filter(':first').click();
       	
       	$(".accordion ul").hide();
        
       
        $(".accordion h3").click(function(){
                $(this).next("ul").slideToggle("slow").siblings("ul:visible").hide();      
              
                
        });
        
       $(".accordion h3").hover(function(){
                $(this).addClass("highlighted")
       }, function(){
                $(this).removeClass("highlighted")
       });
        
        
        
        $(".thumbList li img").click(function(){
        	
        	
        	$that = this;
        	$("#iPS").attr({src : $that.id});
        	
        });
            
                   
       
   	
   	});