/*JS*/
$(document).ready(function(){ 
	/*Functions goes here*/
	productMultivision();
	/*Inits image cache for IE6*/
	if (jQuery.browser.msie && jQuery.browser.version < 7) {
		try {
			document.execCommand('BackgroundImageCache', false, true);
		} catch(e) {}
	}
}); 

function productMultivision() {
	if($("#innerContent .productBloc").length) {
		$('#innerContent .productBloc .leftProductBloc ul li').hide();
		$('#innerContent .productBloc .leftProductBloc ul li:first-child').show();	
		$('#innerContent .rightProductBloc li a').click(function(){
			var linkVisu = $(this).attr("href").split("#");
			$('#innerContent .productBloc .leftProductBloc ul li').hide();
			$("#"+linkVisu[1]).fadeIn(1000);				
			return false;
		});
	}
}


