$(document).ready(function() {
	
	// Uniform for search box
	$("#searchcontent select").uniform();
	
	$('#header ul li.picture img').mouseover(function(event) {
		$(this).removeClass('noopacity');
		$(this).addClass('opacity');		

	});
	
	$('#header ul li.picture img').mouseout(function(event) {
		$(this).removeClass('opacity');
		$(this).addClass('noopacity');

	});
	
	$('#onlyShowSearchedArticles').click(function(event) {
		if($('#onlyShowSearchedArticles').hasClass('showAll')) {
			$('#onlyShowSearchedArticles').removeClass('showAll');
			$('#onlyShowSearchedArticles a').html('Nur Suchanfragen anzeigen');
			$('.toSell').show();
		} else {
			$('#onlyShowSearchedArticles').addClass('showAll');
			$('#onlyShowSearchedArticles a').html('Alle Angebote anzeigen');
			$('.toSell').hide();
		}
	})
	
	
});
