// JavaScript Document
$(document).ready(function(){
   $(".graph_txt a").toggle(function(){
     //$(".frontimage").slideDown('slow');
	 $(".frontimage").find("img").animate({top:'0px'},{queue:false,duration:500});
   },function(){
     //$(".frontimage").slideUp('slow');
	 $(".frontimage").find("img").animate({top:'-180px'},{queue:false,duration:500});
   });
   $(".graph_txt_below a").toggle(function(){
     //$(".frontimage").slideDown('slow');
	 $(".frontimage").find("img").animate({top:'0px'},{queue:false,duration:500});
   },function(){
     //$(".frontimage").slideUp('slow');
	 $(".frontimage").find("img").animate({top:'180px'},{queue:false,duration:500});
   });
   
 });


function checkEmail(value) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
document.getElementById('box_email_message').focus()
return (false)
}

