/**
* Kęstutis Valinčius, made.By
* http://www.by.lt
* 2009
*/

// this event fires as soon as DOM is loaded successfully, so it's fired faster than $(window).ready()
jQuery(function(){
	
});

// this event is triggered only when all DOM elements are downloaded and loaded
$(window).ready(function (){
	
	$('.itemNormal').hover(
		function () {
			$(this).addClass('hover');
		}, 
		function () {
			$(this).removeClass('hover');
		}
	);

});

