$(document).ready(function() {

	$(document).pngFix();
	
	var height = $("#housing").height();
	$("#housing_left").height(height);
	$("#housing_right").height(height);
	
	$("form#Student").validate({
		errorLabelContainer: false,
		rules: {
			'data[Student][name]':'required',
			'data[Student][email]':{'email':true,'required':true}
		}
	})
	
	var overit = false;
	
	$(".panel").hover(function() {
		$(this).fadeTo(100,1);
		$(this).parent().siblings('a').children('.panel').stop().fadeTo(100,.3);
	},function() {
		$(this).fadeTo(100,1);
		$(this).parent().siblings('a').children('.panel').stop().fadeTo(100,1);
	});
});