// JavaScript Document
$(document).ready(function() 
        {
        $(document).pngFix(); 
        
         $('#searchtxt').focus(function() { 
             if (this.value == 'Search...') {this.value = '';}
          });  
         $('#searchtxt').blur(function() { 
             if (this.value == '') {this.value = 'Search...';}
          });     
         $('#username').focus(function() { 
             if (this.value == 'username') {this.value = '';}
          });  
         $('#username').blur(function() { 
             if (this.value == '') {this.value = 'username';}
          });         
         $('#password').focus(function() { 
             if (this.value == 'password') {this.value = '';}
          });  
         $('#password').blur(function() { 
             if (this.value == '') {this.value = 'password';}
          });       
      	$(function(){
      	    $('#right_container').corner({
      			  tl: false,
      			  tr: { radius: 16 },
      			  bl: false,
      			  br: false,
      			  antiAlias: true,
      			  autoPad: false,
      			  validTags: ["div"] }); 
            $('#left_container').corner({
      			  tl: false,
      			  tr: { radius: 16 },
      			  bl: false,
      			  br: false,
      			  antiAlias: true,
      			  autoPad: false,
      			  validTags: ["div"] }); 
      			$('.c').corner();
      			$('.inner').corner({ 
      			  tl: { radius: 6 },
      			  tr: { radius: 6 },
      			  bl: { radius: 6 },
      			  br: { radius: 6 },
              antiAlias: true,}); 
      			$('.date').corner({
      			  tl: { radius: 6 },
      			  tr: { radius: 6 },
      			  bl: { radius: 6 },
      			  br: { radius: 6 },
              antiAlias: true,}); 
      	}); 
        })   
