/**
*   
*    Idfx-lib.js
*    -------------------------
*    Idee Fix basic Jquery code
*
**/

jQuery(window).load(function(){

	// Set image orientation
	$(".sliderkit-panel img").each(function(){
		var ImgHeight = $(this).height();
		var ImgWidth = $(this).width();
		if(ImgHeight > ImgWidth){
			$(this).addClass('idfx-img-ver');
		}
	});
	
	// Slideshow > Standard
	jQuery(".slideshow-standard").sliderkit({
		auto:false,
		circular:false,
		fastchange:true
	});					
	

	// Calcul col height
	//var SetColHeight = setInterval(ApplyColHeight,100);
	
	//function ApplyColHeight(){
		var ColHeight = $('#idfx-page').height();
		$('#idfx-layout-leftcol, #idfx-layout-rightcol').css({height:ColHeight});
		//clearInterval(SetColHeight);
	//}
	
});

