// JavaScript Document
jQuery(document).ready(function()
{
	
//----------
// screenshots settings
//----------

jQuery ('#animation').cycle({
		fx: 'scrollDown',        
		speed:  'slow',
		easing: 'easeOutExpo',
		prev:   '#prev_slide', 
    	next:   '#next_slide',
        timeout: 6000,
		cleartypeNoBg: true,
		cleartype:  1,
		pause: 1
});

kostadino_navigation();

});

///////////////////////////////////////////////////////////////////////////////////// 


//----------
// main navigation
//----------
function kostadino_navigation(){

$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).slideDown(400);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

