// wunschimmobilie.view.js


function hideP() {
	$('#special').hide();
}


$(document).ready(
	function() {

		// Falls wir mehr als eine Angebot-Box haben
		
		var count = $('#special p').size();
		
		if (count > 1) {
			
			// Alle p's verstecken
			$('#special p').hide();
			
			// Click Event auf alle Überschriften legen
			$('.special').click(
				function() {
					
					var $this = $(this);
					
					// Parent holen
					var $parent = $this.closest('#special');
					
					// Die p's dieser Box ein- und ausblenden
					if($('p', $parent).css('display') == 'block') {
						$('p', $parent).hide();
						$('.special').css('background-position','0px 5px');
					} else {
						$('p', $parent).show();
						$('.special').css('background-position','0px -25px');
					}
					
				}
			);
		}
	}
);
