/* when DOM is ready */
$(document).ready(function(){
	$('body.start').fadeIn('slow');
	
	$('#nav li').mouseover(function() {
		$(this).addClass("hover");
	});
	
	$('#nav li').mouseout(function() {
		$(this).removeClass("hover");
	});
	
	$('#social li img').mouseover(function() {
		var text = $(this).attr('alt');;
		//alert(text);
		$('.text').html(text);
	});
	
	$('#social div').mouseout(function() {
		$('.text').html('');
	});
	
	$('#nav .level_2 .active').parent().parent().addclass('active');
 })
