/* #################################################
# Projekt	: Base JavaScripts
# Stand		: 04.06.09
# Autor		: Daniel Zander, Source-Media.com
#################################################### */



// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// FUNCS
// ----------------------------------------------------------------------





// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// READY
// ----------------------------------------------------------------------

$(function(){

$('.info a').click(function(){
	var p = $(this).parent().next('p');
	$(this).html( (p.is(':hidden') ? '(&minus;)':'(+)') );
	p.slideToggle();
	return false;
});


});//ready