jQuery(function() {

// OPACITY OF BUTTON SET TO 50%
jQuery(".entry").css("opacity","1.0");

// ON MOUSE OVER
jQuery(".entry").hover(function () {
								 
// SET OPACITY TO 100%
jQuery(this).stop().animate({
opacity: 0.5
}, "fast");
},

// ON MOUSE OUT
function () {

// SET OPACITY BACK TO 50%
jQuery(this).stop().animate({
opacity: 1.0
}, "fast");
});
});

// IMG LOAD

//jQuery(document).ready(function() {
//    jQuery('#two_column').delay(500).fadeIn("normal");
//});


jQuery(function(){
jQuery('#two_column').hide();				
	jQuery('#two_column').delay(500).fadeIn("slow")
	});

jQuery(function(){
jQuery('#content').hide();				
	jQuery('#content').delay(500).fadeIn("slow")
	});

