/*!
 * Alienfactory JavaScript 1.0
 * http://www.alienfactory.com/
 *
 * Copyright (c) 2009 Terry Rieckhoff
 * Licensed under the Creative Commons License:
 * http://creativecommons.org/licenses/by/3.0/
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
 
 
// ****************************************************************
// cufon font replacment
// ****************************************************************

Cufon.replace('#maincontent .bodycopy h1')('.slide h3')('#footer .footercnt h3')('#maincontent .rightcolumn h1')('#maincontent .rightcolumnhome h1');
 

$(document).ready(function() {

// ****************************************************************
// Login drop down box
// ****************************************************************
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});	
	
				
// ****************************************************************
// Footer and Right sub nav link animation
// ****************************************************************			
	
				
	$('#footer .footercnt ul li a').hover(function(){
		$(this).stop().animate({ paddingLeft: "15px" }, 300);
		}, function() {
        $(this).stop().animate({ paddingLeft: "6px" }, 300);
    });	
     	
     	$('#maincontent .rightcolumn ul li a').hover(function(){
		$(this).stop().animate({ paddingLeft: "15px" }, 300);
		}, function() {
        $(this).stop().animate({ paddingLeft: "6px" }, 300);
     });	
     	
     	
     // link at the bottom animates to top	
     $('.backtotop').click(function(){
       	$('html, body').animate({scrollTop:0}, 'slow'); 
       	return false;
     });
			
}); //end jquery call





