// <![CDATA[

// on DOM ready, let the magic begin
$(document).ready(function(){
	
	$('.firstAd IMG:first-child').animate({opacity: 1.0}, 1000).animate({'width':'125px','height':'125px'},'slow').animate({opacity: 1.0}, 3000).animate({'width':'90px','height':'90px'},'slow');
	
	$('.ad125x125 IMG').hover(function() {
		$(this).stop().animate({'width':'125px','height':'125px'},'fast');
	},function() {
		$(this).stop().animate({'width':'90px','height':'90px'},'fast');
	});
	
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	
	var processing = false;
	$('[id*=spotlightApp-]').mouseover(function () {
		var splitId = this.id.split('-');
		$("#bubble").html($("#appInfo-"+splitId[1]).html());
		$("#bubble").show();
	}).mouseout(function () {
		$("#bubble").hide();
	});
	
	
	
});

// ]]>