$(document).ready(function()
{
	$('#brands a').children('img').stop().fadeTo(0,0.5); 
	$('#brands a').live('mouseover mouseout', function(event) {
	if (event.type == 'mouseover') {
		$(this).siblings().children('img').stop().fadeTo(200,0.5); 
		$(this).children('img').stop().fadeTo(200,1); 

	} else {
		$(this).siblings().children('img').stop().fadeTo(200,0.5); 
		$(this).children('img').stop().fadeTo(200,0.5); 
	}
	});


$("#leftnav a").hover(
function () 
{
temp = this.title;
if(this.title !='')
{
this.title='';
$("#prompt").html(temp);
}
}, 
function () 
{
this.title = temp;
temp = '';
$("#prompt").html('');
});


});

