// JavaScript Document
/*Data:10-14-2010  Author:Rody Chan*/        

/* alexander Oct 19, 2010 @HZ */

jQuery(document).ready(function(){

    jQuery("#viewwarr").click(function(event){
        jQuery("#showwarr").fadeIn(300);
        event.stopPropagation();
    });
    
    jQuery("body").click(function(){
        jQuery("#showwarr").fadeOut(300);
    });

	jQuery("#colse").click(function(){
			jQuery("#showwarr").fadeOut(300);
		});

});

