jQuery(document).ready(function ($) {
	var i, tallest;

	$('#header').append('<div id = "hax-line">');
	
	if ($('#sign-up-form').length) {
		$('#sign-up-form').validate();
		
		$('#t-reside-other').focus(function () {
			$('input[name = "resides_in"]').removeAttr('checked');
		});
		
		$('#t-work-other').focus(function () {
			$('input[name = "works_in"]').removeAttr('checked');
		});
	}
	
	for (i = 0, tallest = 0; i < $('#news-cycle .entry').length; i++) {
		var e = $('#news-cycle .entry')[i];
		
		if (e.offsetHeight > tallest) {
			tallest = e.offsetHeight;
		}
	}
	
	$('#info-news > .inside > p').css('margin-top', tallest + 55 + 'px');
	
	$('.cycle').cycle({
		pause: true,
		speed: 300,
		timeout: 5000
	});
});
