$(document).ready(function() {
	// loadFirebugConsole();
	
	$('.info').hide();
	
	$('.selectWraper li').each(
		function(intIndex) {
			$(this).bind('mouseenter', function() {
				$(this).find('.info').slideDown(400);
				// console.log('enter');
			});
			
			$(this).bind('mouseleave', function() {
				$(this).find('.info').slideUp(400);
				// console.log('leave');
			});
		}
	);

	// target external links into new windows
	$('a').each(function(index) {
		if ($(this).attr('rel') == 'external') $(this).attr('target', '_blank');
	});

	//offers/clients
	$('dl#accordion dt').click(function() {
		$(this).next().slideToggle('fast');
		return false;
	}).next().hide();


	// var max = $('dl#accordion dd').length;
	// var index = Math.ceil(Math.random()*max);
	// $("dl#accordion dd:nth-child(" + index*2 + ")").show();
});

