
var timer = 1000;

function show_cats(event){
	if (event != null) event.preventDefault();

	$("#select").fadeOut(timer/2);
	
	$("#inner_frame").animate( { width:"800px", height: "620px"}, timer, "swing", function() {
		$("#select").load("static/index_particuliers.php");
		$("#select").fadeIn(timer/2);
	});
}


$(document).ready(function(){
	if (document.referrer.match("http://sostick.itsnow.be/")) {
		timer = 0;
		show_cats(null);
	} else {
		$("#part_link").click(show_cats);
	}
});