$(document).ready(function(){
	$('.login').hover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'http://dev.ovationtv.com/images/sections/community/login-hover.png'});
		},
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'http://dev.ovationtv.com/images/sections/community/login.png'});
		}
	);
	
	jQuery.preLoadImages("search-filter-arrow-hover.png", "http://dev.ovationtv.com/images/sections/community/search-filter-arrow-hover.png");
	
	$('a#filter').click(function() {
		$('#search-filter').removeClass('closed');
		return false;
	});
	
	$('a#close-filter').click(function() {
		$('#search-filter').addClass('closed');
		return false;
	});
  
});
