$(document).ready(function() {
  
  
//random  
  var randomImages = ['1','2', '3'];
  var rndNum = Math.floor(Math.random() * randomImages.length);
  $("div.splash").css({ background: "url(http://media.rencontreshard.com/new/images/rotate/" + randomImages[rndNum] + ".jpg) 400px top no-repeat" });

//png
$('a.button, div.tip').ifixpng(); 

});


//tabs
$(function() {
	$("#tabs").lavaLamp({
		fx: "backout",
		speed: 700,
		click: function(event, menuItem) {
			return false;
		}
	});
});
  
  

function tab1() {
	$("#tab1").show(); 
	$("#tab2").hide(); 
	$("#tab3").hide(); 
}  

function tab2() {
	$("#tab1").hide(); 
	$("#tab2").show(); 
	$("#tab3").hide(); 
}  

function tab3() {
	$("#tab1").hide(); 
	$("#tab2").hide(); 
	$("#tab3").show(); 
}
