var mobackground = new Array();
mobackground.push('-3');
mobackground.push('118');
mobackground.push('239');
mobackground.push('360');
mobackground.push('481');
mobackground.push('602');
mobackground.push('723');
mobackground.push('844');

window.addEvent('domready', function(){
	$$('ul#navigation li.main').each(function(el, i){
		el.addEvents({
			'mouseenter': function(){
				el.addClass('over');
				$('rollover').set({
					'styles': {
						'display': 'block',
						'left': mobackground[i] + 'px',
						'width': ((i==7)?121:126) +'px'
					}
				});
			},
			'mouseleave': function(){
				el.removeClass('over');
				$('rollover').set({
					'styles': {
						'display': 'none'
					}
				});
			}
		});
		
		if(el.getFirst('a').get('id')=='selected'){
			$('active').set({
				'styles': {
					'left': mobackground[i] + 'px'
				}
			});
		}
	});
	if ($('graphicSlide')) {
		var data = {
			'graphics-01.jpg': {},
			'graphics-02.jpg': {},
			'graphics-03.jpg': {},
			'graphics-04.jpg': {}
		};
		(function() {
			myShow = new Slideshow.KenBurns('graphicSlide', data, {
				loader: 'animate',
				captions: false,
				controller: false,
				hu: '/img/jpg/',
				overlap: true,
				thumbnails: false,
				duration:1000,
				delay: 5000,
				zoom: 0
			});
		}).delay(1000);
	}
	if($$('div.youtubeover')) {
		$$('div.youtubeover').each( function(el) {
			el.setStyle('opacity', '0.7');
		});
	}
});

searchFocus = function() {
	el = $('inpSearch');
	el.removeClass('fade'); 
	if(el.get('value')=='trefwoord / product') el.set('value','');
}
startSearch = function() {
	if ($('inpSearch').get('value') != '' && $('inpSearch').get('value') != 'trefwoord / product') {
		$('frmSearch').submit();
	}
}

