$(document).ready(function(){
    
    var params = {};
    params.menu = "false";
    params.bgcolor = "#000";
    params.allowFullScreen = "false";
    params.allowScriptAccess = "always";
    
    var attributes = {};
    attributes.id = "LODHO_Splash";
    attributes.name = "LODHO_Splash";
    attributes.base = "/swf/lodho_flash/";
    
    var flashvars = {};
    flashvars.linkTo = "/fr/flash";
    
    swfobject.embedSWF("/swf/lodho_flash/LODHO_Splash.swf", "SplashContainer", "640", "300", "10.0.0", "/inc/commons/swf/expressInstall.swf", flashvars, params, attributes);
    
    ////////////////////////////////////////////
    
	$(".home .openCloseLnk").tipTip({
		keepAlive: false,
		defaultPosition: "top",
		delay: 0,
		attribute: "alt",
		edgeOffset: 0,
		maxWidth: "500px"
	});
	
	$(".home #Content .openCloseLnk").click(function(e) {
			//$('#log').append('<div>Handler for .mouseover() called.</div>');
			e.stopPropagation();
			if ($(this).data("isOpen")) {
				$(this).parent().children('.openClose').stop(true, true).fadeOut(1000);
	  		$(this).data("isOpen", false);
	  		
			} else {
				$(this).parent().children('.openClose').stop(true, true).fadeIn(4000);
	  		$(this).data("isOpen", true);
	  	}
	  	
	  	//$(this).children('.openClose').show('blind');
	});
    
});
