window.addEvent('domready', function(){

$$('.homeWebshopLink').set('tween', { 'duration':300 });
if(!Browser.Engine.trident) { // If not IE
	$$('.homeWebshopLink').setStyle('opacity', 0.7);
	$$('.homeWebshopLink').addEvents({
		'mouseenter':function(){ this.tween('opacity', 1.0) },
		'mouseleave':function(){ this.tween('opacity', 0.7) }
	});
}


	$$('input[type=button], a.kosaricaBuy2').addEvents({
		'mouseenter':function(){ if(!this.hasClass('buyButton')) this.addClass('hover') },
		'mouseleave':function(){ if(!this.hasClass('buyButton')) this.removeClass('hover') }
	});
	$$('a.kosaricaBuy, input[type=button].buyButton, input[type=submit].buyButton').addEvents({
		'mouseenter':function(){ this.addClass('hoverBuy') },
		'mouseleave':function(){ this.removeClass('hoverBuy') }
	});
	
	$$('.fotografija').addEvents({
		'mouseenter':function(){ this.addClass('fotografijaHover') },
		'mouseleave':function(){ this.removeClass('fotografijaHover') }
	});
	
	$$('.homeSectionLink img').set('tween', { 'duration':100 });
if(!Browser.Engine.trident) { // If not IE
	$$('.homeSectionLink img').addEvents({
		'mouseenter':function(){ this.tween('opacity', 0.7) },
		'mouseleave':function(){ this.tween('opacity', 1) }
	});
}
});
