/*  ================================
     Sitewide JavaScript
    ================================ */

	// Detected and set from HTML
	var isIE6;
	isIE6 = false;

	function sitewidePageLoaded()
	{
		// All pages on load
	}

/*  ================================
     Template 1 JavaScript
    ================================ */

	function template1Loaded()
	{
		// Per template on load
		sitewidePageLoaded();
	}
	
	
	$(document).ready(function() {
	    $("a.group").fancybox({
            'hideOnContentClick': false,
            frameHeight: 245, frameWidth: 340
        });

    });
	    
	    	    
	function runFunction(tid, tname, temail){	    	
	    $.cookie("pfaff_userid", tid);
	    $.cookie("pfaff_name", tname);
	    $.cookie("pfaff_email", temail);	

        $("#textbox1").val(tname);
        $("#textbox2").val(temail);	    	    
	}