// JavaScript Document
$(document).ready(function(){
	$("nav ul li a").hover(function(){
		$(this).stop().animate({  paddingLeft: '25px', width:'167px'}, 200);	
		}, function() {
		$(this).stop().animate({  paddingLeft:'15px', width:'192px'}, 200);
	});
	
	$("header").fadeIn(2000);
		
	$("#ifog").click(function(){
		$("#infogra").show(200);
	});
	$("#infogra").click(function(){
		$(this).hide(200);
	});
	$(".me").hover(function(){
		$("#aboutme").show(500);
	});
	$("#aboutme").click(function(){
		$(this).hide(500);
	});
	
		$(".infog").hover(function(){
		$("#whats").show(500);
	});
	$("#whats").click(function(){
		$(this).hide(500);
	});
			
});


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
};
