// JavaScript Document
$(document).ready(function() {

	$('div#brand').css('display','none').fadeIn(4000)




});

/*
	$('div#brand').css('opacity',0)
	$('div#feature').append('<p>hello</p>')
	$('div#feature p').css('color','#fff').fadeOut()

	$('h1').fadeTo(0.5)
	$('div#feature').append('<p>hello</p>')
	$('div#feature p').css('color','#fff').fadeOut()
	$('div#feature').slideDown()




filter:alpha(opacity=50);
        -moz-opacity:0.5;
        -khtml-opacity: 0.5;
        opacity: 0.5;
*/
