$(function() {
	$('div.flags').html('<img src="images/b.jpg"/><img src="images/u.jpg"/><img src="images/s.jpg"/><img src="images/y.jpg"/><img src="images/h.jpg"/><img src="images/a.jpg"/><img src="images/r.jpg"/><img src="images/b.jpg"/><img src="images/o.jpg"/><img src="images/r.jpg"/>');
	$('img').mousedown(function(){
		return false;
	});
	
	var overlay_transparency$ =  $('div.transparency');
	var content$ =  $('div.content');
	
	$('.title span').mouseover(function() {
		$(this).css("color", "#776");		
		overlay_transparency$.stop().animate({opacity:0.0},300, function(){
			content$.html('Busyharbor is a business community built on an implementation of a Conceptual Framework called Buoyancy.<p>Buoyancy empowers you to stay afloat by trivializing the managment of business assets and intelligence.</p><p>We\'re giving berth to business and much, much more...</p>');
		});
	}).mouseout(function() {
		content$.text('');
		$(this).css("color", "#246098");		
		overlay_transparency$.stop().animate({opacity:1.0},300);
	});
	
	// TODO: Only show first paragraph of each section.
	
	
	$('.leftContent p').add('.rightContent p').mouseover(function() {
		theContent$ = $(this).css("color", "#246098");
		overlay_transparency$.stop().animate({opacity:0.0},300, function() {
			content$.text(theContent$.text());
		});
	}).mouseout(function() {
		$(this).css("color", "#776");
		content$.text('');
		overlay_transparency$.stop().animate({opacity:1.0},300);
	});
});

