/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function() {

$('#wrapLogo').hover(function() {
	$('#styles').animate({left: "0px", top: "0px"}, 500);
},
function() {
	$('#styles').animate({left: "-48px", top: "-48px"}, 1000);
});

$('#styles').hover(function() {
    $('#fade').show('700');
});

$('#closeFade').click(function() {
	$('#fade').hide('slow');
});

});

