/*afegir enllaç a imprimir després del fil d'ariadna*/
$(document).ready(function(){
		$("body").addClass("js") /*afegim la classe js al body per controlar quan javascript esta actiu*/
		$("#contingut").prepend("<p id='print'><a href='javascript:window.print();'>Imprimir</a></p>"); /*afegim l'enllaç a imprimir*/
		$("#mostrar-contingut").click(function(){ 
				$("div#contingut-complet").toggle()
			} );

			
		$("h4.scholarships").click(function(){ 
				$(this).next().eq(0).toggle();
				$(this).next().next().eq(0).toggle();
			} );
		
		
		$("li.share").click(function(){ 
				$("div.flash-share").slideToggle("slow");

			} );
				

		$("table#close-to-you thead tr td a.bullet").click(function(){
				$(this).toggleClass("bullet-dalt")
			} );


});


