$(function($){

/*	$(document).ready(function() {
		var number = Math.floor(Math.random()*4)+1;
		var div = document.getElementById('fdarContainer');

		$(div).css('background', "url('/images/fdar/background_" + number + ".jpg') no-repeat");
	});
*/
	$('div#logoFdar').mouseover(function(){
		$(this).css('background','url("/images/fdar/logo_over.png") no-repeat');
	});
	$('div#logoFdar').mouseout(function(){
		$(this).css('background','url("/images/fdar/logo.png") no-repeat');
	});

	$('div#logoDia').mouseover(function(){
		$(this).css('background','url("/images/dia/logo_over.png") no-repeat');
	});
	$('div#logoDia').mouseout(function(){
		$(this).css('background','url("/images/dia/logo.png") no-repeat');
	});

	$('div#fdarLandingContainer').mouseover(function(){
		$(this).css('cursor', 'pointer');
	});

	$('div#diaLandingContainer').mouseover(function(){
		$(this).css('cursor', 'pointer');
	});
});
