	$(document).ready(function() { 
	
		$(".feature-item-top").hover(function() {
			$(this).animate({height: "320"}, "fast");
			$(".feature-item-bottom").animate({height: "170"}, "fast");
		}, function() {
			$(this).animate({height: "190"}, "fast");
			$(".feature-item-bottom").animate({height: "190"}, "fast");
		})	
		
		$(".feature-item-bottom").hover(function() {
			$(".feature-item-top").animate({height: "60"}, "fast");
			$(this).animate({height: "320"}, "fast");
			
		}, function() {
			$(".feature-item-top").animate({height: "190"}, "fast");
			$(this).animate({height: "190"}, "fast");
		})
		
		$("select#membership").change( function() {
			var WhichOption = $(this).val();
			
			if (WhichOption == ""){
				$("fieldset.show").removeClass("show").addClass("hide");
			}
			else if ( WhichOption == "student" ) {
				$("div.show").removeClass("show").addClass("hide");
				$("div#student").removeClass("hide").addClass("show");
				$("div#organisation").removeClass("show").addClass("hide");			
			}		
			else if ( WhichOption == "rto" || WhichOption == "tafe" || WhichOption == "other" ) {
				$("div.show").removeClass("show").addClass("hide");
				$("div#organisation").removeClass("hide").addClass("show");
				$("div#student").removeClass("show").addClass("hide");				
			}				
		});			
	
	});  

	Cufon.replace('h2,h3,h4', {
		hover: true,
		hoverables: { a: true }
	});		
	