$(function(){

	$('.dpic').each(
		function()
		{
			$(this).append('<div style="position:absolute;bottom:-41px;left:-7px;z-index:2;" id="'+$(this).attr('id')+'_logo"><img src="/images/design/main/'+$(this).attr('id')+'_logo.png"></div>');
		}
	)

	$('.dpic').animate({opacity:0.6},1);
	$('.dpic').hover(
		function(){phover($(this).attr('id'));},
		function(){phover($(this).attr('id'),1);}
	).click(
		function(){
			window.location.href=$('a[wid='+$(this).attr('id')+']').attr('href');
		}
	);
	
	$('.ade').hover(
		function(){phover($(this).attr('wid'));},
		function(){phover($(this).attr('wid'),1);}
	);
	
	

});

function phover(e,m){
op=m?0.6:1;
b=m?-41:0;
	$('#'+e).animate({opacity:op},'fast');
	$('#'+e+'_logo').animate({bottom:b},'fast');
}