$(document).ready( function(){
							if($.browser.safari) {$('#servicesContainer h2').css("display", "none");
}
		
		if ((location.hash == '#servicesPrint')||(location.hash == '#design-graphique-print-logo')||(location.hash =='#graphic-design-print')||(location.hash =='#print-logo-design')){
		$('#webServicesDetails').hide();
		$('#printServices').addClass('selected');
		$('.firstBox dd').hide();
		$('#printServices').next().slideDown(1000);	
		}	else{
		$('#webServices').addClass('selected');
		$("#printServices").next().hide();
		$("#webServices dd").slideDown(1000);
		$("#webServicesDetails").fadeIn(0);
		}
						
 $('.firstBox dt').click(function() {
						if(!$(this).hasClass('selected')){
							$('.firstBox dt').removeClass('selected');
						$(this).addClass('selected');
						$('.firstBox dd').slideUp(1000);
						$(this).next().slideDown(1000);	
						if($(this).attr('id') == 'webServices'){
							window.location.hash = "servicesWeb";
							$('#webServicesDetails').fadeIn(500);
							}else{$('#webServicesDetails').fadeOut(500);
							window.location.hash = "servicesPrint";
							};
						}
						})
	  
	  
	   $('.firstBox dt').hover(
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover');
      }
    );
	   
	   	});
