$(function() {
	$('.rollover').simpleImageRollover();
	
	var title = $('#title');
	var filename = '/sites/1/static/images/flash/' + $('body').attr('class').replace('section-', '') + '.swf';
	if(title.size() > 0) {
		var so = new SWFObject(filename, 'title', 285, 100);
    so.addParam("wmode", "transparent");
		so.write('title');
	}
	
	$('#nav a').css({backgroundPosition: '-140px top'})
	           .filter('.selected')
						 .css({backgroundPosition: '0 top'});
	
	$('#nav a:not(.selected)').hover(function() {
		$(this).animate({backgroundPosition: '(0 top)'});
	}, function() {
		$(this).animate({backgroundPosition: '(-140px top)'});
	});
	
	$('#signup .item input').inputHint();
});