jQuery.noConflict();

function button_hover_shortcode(){
	jQuery('.button_link,button[type=submit],button,input[type=submit],input[type=button],input[type=reset],.hover').hover(
		function() {
				jQuery(this).stop().animate({opacity:0.8},400);
			},
			function() {
				jQuery(this).stop().animate({opacity:1},400);
		});
}

jQuery(document).ready(function() {
	
	jQuery("#form_home_page_event_filters").change( function(){
		jQuery("#event-filter").submit();
	});
	
	if(!jQuery.browser.msie){button_hover_shortcode();}
	
	
});
