﻿// JScript File
    var $jq = jQuery.noConflict();
    
    $jq(document).ready(function() 
    {
	    $jq("a.fancybox").fancybox
	    ({
		    'zoomSpeedIn':		300, 
		    'zoomSpeedOut':	    300, 
		    'overlayShow':		true,
		    'hideOnContentClick': false,
		    'hideOnOverlayClick' : false,
		    'centerOnScroll': false,
		    'padding' : 10,
		    'enableEscapeButton' : true
	    });
    });
    
    function resetText(id,text)
    {
	    var txt = document.getElementById(id);
	    if(txt.value == "")
	    {
		    txt.value = text
	    }
    };

    function clearText(id,text)
    {
	    var txt = document.getElementById(id);
	    if (txt.value == text)
	    {
	        txt.value = "";
	    }
    };
   
  
