var $j = jQuery.noConflict(); 

window.onerror=function(desc,page,line,chr){
/* alert('JavaScript error occurred! \n'
  +'\nError description: \t'+desc
  +'\nPage address:      \t'+page
  +'\nLine number:       \t'+line
 );*/
}


/*$j(document).ready(
				function(){
					$j('#home_banner').innerfade({
						speed: '18000',
				timeout: 5500,
				type: 'sequence',
				containerheight: '220px'


					});
				

			});*/

$j(document).ready(function() {

            $j("#newsletter").click(function(e) {
                e.preventDefault();
              
				$j("#newlsetter-box").slideDown("slow");
				
				
                
            });
			
			$j("#close-Button").click(function(e)  {
			e.preventDefault();
                $j("#newlsetter-box").slideUp("slow");
				$j("#newlsetter-box").hide();                
            });

               

        });
		

$j(document).ready(function() {


            $j("#needhelp").click(function(e) {
			
                e.preventDefault();
               	$j("#needhelp-box").slideDown("slow");
               
            });

            
            $j("#needhelp-box").mouseout(function(e) {
			e.preventDefault();
                	if($j(e.target).parent("#needhelp").length==0) 
					{
						$j("#needhelp-box").hide();
					}
            });            

        });


