﻿
	$(document).ready(function(){

		//renderHoverGif
		$('.renderHoverGif').hover(function(){
			$(this).attr('src', $(this).attr('rel') + '_hover.gif');
		}, function(){
			$(this).attr('src', $(this).attr('rel') + '.gif');
		});

		//renderHoverGifPortfolio
		$('.renderHoverGifPortfolio').hover(function(){
			if( clientCourant !== $(this).attr('id') ){
				$(this).css({'background-image' : 'url(gx/' + langue + '/menus/menu_portfolio/' + souspage + '/' + $(this).attr('id') + '_hover.gif)'});
			}
		}, function(){
			if( clientCourant !== $(this).attr('id') ){
				$(this).css({'background-image' : 'url(gx/' + langue + '/menus/menu_portfolio/' + souspage + '/' + $(this).attr('id') + '.gif)'});
			}
		});

		$('.changeClientPortfolio').click(function(){
			$('.changeClientPortfolio').each(function(i){
				$(this).css({'background-image' : 'url(gx/' + langue + '/menus/menu_portfolio/' + souspage + '/' + $(this).attr('id') + '.gif)'});
			});
			//$('#descriptionClient').attr('src', 'gx/' + langue + '/textes/' + souspage + '/' + $(this).attr('id') + '.gif' );
			
			//var pos = $(this).attr('id');
			var c = $("#scrollWrapper");
			c[0].scrollTo("img[rel='"+$(this).attr('id')+"']");
			//return false;

			
			$('.texteportfolio').hide();
			$('#texteportfolio_'+$(this).attr('id')).show();
			
	
			$(this).css({'background-image' : 'url(gx/' + langue + '/menus/menu_portfolio/' + souspage + '/' + $(this).attr('id') + '_on.gif)'});
			clientCourant = $(this).attr('id');
		});

	});
	
	jQuery.preloadImages = function()
	{
	  for(var i = 0; i<arguments.length; i++)
	  {
		jQuery("<img>").attr("src", arguments[i]);
	  }
	}
	
	$.preloadImages(
		"gx/" + langue + "/menus/menu_portfolio/commercial_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/realisations_3d_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/realisations_3d_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/residentiel_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/residentiel_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/barroco_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/barroco_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/bisi_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/bisi_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/sophia_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/sophia_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/nightclub_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/nightclub_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/mirchi_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/mirchi_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/delice_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/delice_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/votre_agent_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/commercial/votre_agent_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/residentiel/pilon_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/residentiel/pilon_on.gif",
		"gx/" + langue + "/menus/menu_portfolio/residentiel/roy_hover.gif",
		"gx/" + langue + "/menus/menu_portfolio/residentiel/roy_on.gif",
		"gx/" + langue + "/menus/menu_principale/contact_hover.gif",
		"gx/" + langue + "/menus/menu_principale/contact_on.gif",
		"gx/" + langue + "/menus/menu_principale/infos_hover.gif",
		"gx/" + langue + "/menus/menu_principale/infos_on.gif",
		"gx/" + langue + "/menus/menu_principale/portfolio_hover.gif",
		"gx/" + langue + "/menus/menu_principale/portfolio_on.gif"
	);
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
