 $(document).ready(function(){
		
		$('.main-menu-list li').hover(
		function() { $(this).addClass('hover') },
		function() { $(this).removeClass('hover') }
		);
		
		// Form Input
		 $('.change').focus(function() {
		 	if (this.value == this.defaultValue) {
		 this.value = ''; }});
		 
		 $('.change').blur(function() {
		 	if (this.value == '') {
		 this.value = this.defaultValue; }});
		 
		 // Cycle Page
		$('.slideshow').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
		
		// Fancybox
		$("a.fancybox").fancybox({
			'titleShow'		: false
		});
		
		// Fancybox za 'send link'
		$("a.slink").fancybox({
			'titleShow'		: false
		});
							
 });					
