$(function() {
		// removes red hover on links containing images
		$('a img').parent().addClass('imageLink');
		// replace cookie calls inside body with this
		$('#setfr').bind('click', function() {
			setCookie('SiteSelectionCookie','FR');
		});
		$('#setde').bind('click', function() {
			setCookie('SiteSelectionCookie','DE');
		});
		// leaves hints from title attribute in form inputs and clears them on focus
		$('input:text, textarea').hint();
		// tabs
		//$('#ptabs').tabify();
		$('#ppractical').localScroll();
		$('.gblock> div').hide();
		$('.gblock> .sel').click(function() {
			$(this).siblings('.selected').andSelf().toggleClass('selon').end().end()
				.next('div').slideToggle('fast')
		});
		$(function () {
		   var tabHolders = $('div.tabcontent');
		   $('ul#ptabs a').click(function () {
			   tabHolders.hide().filter(this.hash).show();
			   $('ul#ptabs li').removeClass('active');
			   $(this).parent().addClass('active');
			   return false;
		   }).filter(':first').click();
		}); 
	});
