jQuery.noConflict();
jQuery(document).ready(function ($) {
    	    if($('.banner').length > 0){
			$("#b1").mouseenter(
    			function () {
    			    $("#b1").animate({ height: 160 }, 120);
    			}
    		);
    	        $("#b1").mouseleave(
    			function () {
    			    $("#b1").animate({ height: 160 }, 120);
    			}
    		);
    	        $("#b2").mouseenter(
    			function () {
    			    $("#b2").animate({ height: 160 }, 120);
    			}
    		);
    	        $("#b2").mouseleave(
    			function () {
    			    $("#b2").animate({ height: 160 }, 120);
    			}
    		);
    	        $("#b3").mouseenter(
    			function () {
    			    $("#b3").animate({ height: 160 }, 120);
    			}
    		);
    	        $("#b3").mouseleave(
    			function () {
    			    $("#b3").animate({ height: 160 }, 120);
    			}
    		);
			}
});


/*
From DWscript.js
*/
function isRadioButtonChecked(theOption, theForm){ 
	if (theForm.elements[theOption].checked){
		return true;
	}
	else{
		for (i=0;i < theForm.elements[theOption].length;i++) {
			if (theForm.elements[theOption][i].checked) {
				return true;
			}
		}
	}
	return false;
}
function validateEmail( email ){
  var regExp = /^[\w\-_]+(\.[\w\-_]+)*@[\w\-_]+(\.[\w\-_]+)*\.[a-z]{2,4}$/i;
  return regExp.test( email );
}










