// JavaScript Document

jQuery(document).ready(function()
{
	//logoIntoPlace();
	//menuIntoPlace();
	
	$('a').hover(
        function () {
			$(this).stop(true, true).animate({color: '#ffffff'});
 
        }, 
        function () {
            $(this).stop(true, true).animate({color: '#bc4089'});  
        }
    );
});
