// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery("#CDESIGNFashion").click(function(){
		if(jQuery("#ProductsItemsLi1 .subNode").css("display").indexOf("block")>=0){
			jQuery(this).children("img").attr("src","menu/sousfleches.png");
		}else{
			jQuery(this).children("img").attr("src","menu/sousfleches2.png");
		}
		jQuery("#ProductsItemsLi1 .subNode").toggle("normal");
	});
	jQuery("#ServicesTitle").click(function(){
		if(jQuery("#ServicesItems").css("display").indexOf("block")>=0){
			jQuery("#ServicesTitle").css("background-image","url('menu/fond_bt_services_fold.png')");
		}else{
			jQuery("#ServicesTitle").css("background-image","url('menu/fond_bt_services_unfold.png')");
		}
		jQuery("#ServicesItems").toggle("normal");
	});
	jQuery("#ContactsTitle").click(function(){
		if(jQuery("#ContactsContent").css("display").indexOf("block")>=0){
			jQuery("#ContactsTitle").css("background-image","url('menu/fond_bt_contacts_fold.png')");
		}else{
			jQuery("#ContactsTitle").css("background-image","url('menu/fond_bt_contacts_unfold.png')");
		}
		jQuery("#ContactsContent").toggle("normal");
	});
	jQuery("#ContactsPage").click(function(event){
		event.stopPropagation();
	});
});



