jQuery.fn.ForceNumericOnly =


$(document).ready(function() {
var screenWidth = 0;
screenWidth=getWidth();
function getWidth()
{
  if (window.innerWidth)
        return window.innerWidth;
  else if (document.documentElement && document.documentElement.clientWidth)
     return document.documentElement.clientWidth;    
  else if (document.body)
    return document.body.clientWidth;
}


  $(window).bind("resize", function(){
        screenWidth=getWidth();
        if (screenWidth>825){
            $("#fixme").css('left', (screenWidth-760)/2-0);
            $("#fixme").fadeIn("fast");
			 $("#fixme2").css('right', (screenWidth-760)/2-0);
            $("#fixme2").fadeIn("fast");
            }
        else{
             $("#fixme").fadeOut("fast");
			   $("#fixme2").fadeOut("fast");
             }
})
   // alert((screen.width-825)/2-40);
    $("#fixme").css('left', (screenWidth-760)/2-0);
   $("#fixme2").css('left', (screenWidth-760)/2-0);
    if (screenWidth>825)
        $("#fixme").fadeIn("fast");

    else
         $("#fixme").fadeOut("fast");

    $("#wz_12").ForceNumericOnly();

	

Array.max = function( array ){
    return Math.max.apply( Math, array );
}; 




});

