 // JavaScript Document
		
		

	$(document).ready( function(){
    
    ///////   VP LOGIN BOX FUNCTIONS   /////// 
	
	$(".vp").click(function(event){
		event.preventDefault();		
		$("#vploginbox").css({"height":$("body").height()+"px"}).fadeIn("fast")
		$("#vploginbox form #usr").focus();
			
	});
	
	$("#vploginbox #closewin").click(function(event){
		event.preventDefault();
		$("#vploginbox").fadeOut("fast")
			
	});
	
	
	
	/*if($('#usr').val() !== ''){
    	$('#usr').css("background","url(../img/none.gif)");
    }*/

	$('#pwd').focus(function() {
    	$(this).css("background","white");
	});
	
	$('#pwd').blur(function() {
    	if($('#pwd').val() == ''){
    		$('#pwd').css({"background" : "url(img/username-password.gif) no-repeat 0 -36px"});
    	}
	});
	
	$('#usr').focus(function() {
    	$(this).css("background","white");
	});
	
	$('#usr').blur(function() {
    	if($('#usr').val() == ''){
    		$('#usr').css({"background" : "url(img/username-password.gif) no-repeat 0 0"});
    	}
	});
	
	///////  END  VP LOGIN BOX FUNCTIONS   /////// 
    
 });
