$(document).ready(function() {
	
	$("ul.dropdown li:last-child").addClass("last");
	
	
    $("ul.dropdown li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    
    });
	
	/* ------------------------------------------------------------------- */
	
	var s = $('a.thisisit > span').html();
	
	if (s != null) {
		$('li.menuparent > a > span').html(s);
	};
	
	/* ------------------------------------------------------------------- */	
	
	$("a[rel=group1]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
		return '<span id="fancybox-title-over">Nuotrauka ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
	}});
	
	/* ------------------------------------------------------------------- */
	
	var highestnumber = 0;
	var kaslieka = 0;
	
	$(".NewsSummary").each (function(intIndex){
	
		kaslieka = intIndex % 2;
		
		if (kaslieka < 1) {
			
			$(this).css('clear','both');
			
		}
		
	});

});
