$(function(){
	$('#products #pager a').hover(function(){
		var indekss = $('#products #pager a').index(this);
		$('#products #pager li').removeClass('active');
		$(this).parent().addClass('active');
		$('#products ol li').removeClass('active');
		$('#products ol li').eq(indekss).addClass('active');
	},function() {}).click(function(){return false;});
	$('#contactform .submit, #support-form .submit').hover(function(){
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
});