$(function()
{
	$.fn.GF.config.multilanguage = true;
	var themedir = $.fn.GF.config.themedir = '/wp-content/themes/filtes';
	
	if( $.fn.GF.isHome() ){
		
		fx.preloadHand();
		
		$( '.nivo-gallery' ).nivoSlider(
		{
			effect				: 'random',
			slices				: 5,
			boxCols				: 4,
			boxRows				: 6,
			animSpeed			: 500,
			pauseTime			: 3000,
			directionNav		: false,
			directionNavHide	: true,
			controlNav			: false
		});
		
	}
	
	if( $.fn.GF.isPage( 'contacts' ) ){
		
		$.fn.GF.validate( {	form : '#contact-form' } );
		
	}
	
	if( $.fn.GF.isSinglePage( 'products' ) )
		slideMenu.build( 'product-accordion', 300, 10, 10 );
	
	if( $.fn.GF.isPage( [ 'company', 'products'] ) ){
	
		$( '.gallery' ).nivoSlider(
		{
			effect				: 'random',
			slices				: 4,
			boxCols				: 4,
			boxRows				: 3,
			animSpeed			: 500,
			pauseTime			: 3000,
			directionNav		: false,
			directionNavHide	: true,
			controlNav			: false
		});		
		
	}
	
	if( $.fn.GF.isPage( 'where-we-are' ) ){

		$.fn.GF.googlemap( '#google-map', 
		{
			markers : [
				{
					coord : '45.625511,9.926609',
					title : 'Filtes International',
					image : themedir + '/style/img/common/gTip.png'
				}
			],
			type: 'satellite',
			zoom: 16
		});
		
	}
	
	
});


var fx = {
	preloadHand: function()
	{
		var $el = $('#hand'),
			img = new Image();
		
		$(img).load(function()
		{
			$(this).hide();
			$el.append(this);
			$(this).fadeIn(900);
		})
		.attr('src', '/wp-content/themes/filtes//style/img/common/hand.png');
	}
};
