// <![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
	
	// if user needs help logging in
	$("#expandDevs").click(function(){
		if($(this).text() == "show")
			$(this).text("hide");
		else
			$(this).text("show");
		
		$("#devExpand").toggle("fast");
		
		return false;
	});
	
	// if user needs help logging in
	$("#expandTesters").click(function(){
		if($(this).text() == "show")
			$(this).text("hide");
		else
			$(this).text("show");
		
		$("#testerExpand").toggle("fast");
		
		return false;
	});
	
});

// ]]>