/**
 * @author .DeV!L
 * @copyright 2009
 */

$(function(){
	img = document.createElement('img');
	img.src = 'images/face2.png';
	
	$('map[name="logo"]').hover(function(){
		$('#logo').css({
			'top': '16px'
		});
		$('#star').show();
	}, function(){
		$('#logo').css({
			'top': '15px'
		});
		$('#star').hide();
	});
	
	$('map[name="blog"]').hover(function(){
		$('#arr01').show();
	}, function(){
		$('#arr01').hide();
	});
	
	$('#face').hover(function(){
		$(this).css('backgroundImage', 'url(images/face2.png)');
	}, function(){
		$(this).css('backgroundImage', 'url(images/face.png)');
	});
});
