$(document).ready(function(){
	bg = function(){
		var w = $(window).width();
		var h = $(window).height();
		if(w < 1400 || h < 300){
			$('img#fixed').fadeOut(3000);
		} else{
			$('img#fixed').fadeIn(3000);
		}
	};
	bg();
	$(window).resize(bg);

	$('select.filter').change(function(){
		if($(this).val()){
			location.href = $(this).val();
		}
	});
});
