// JavaScript Document


// osnovni animacija
$(document).ready(function(){
	$(window).load(function(){
	
		$(".inercel")
		.slideDown()

		$(".potpis")
		.slideDown()
		.slideUp()
		.slideDown()
		return false;	

	}); 
});



// SOCIAL

$(document).ready(function(){
 	$(".inercel").mouseenter(function(){
		$(".social")
		.animate({opacity: "1", top: "-=12px"}, "fast")
		$(".potpis")
		.animate({opacity: "0.2"}, "fast")
		$(".sajt")
		.slideUp()
		return false;	
	});

 	$(".inercel").mouseleave(function(){
		$(".social")
		.animate({opacity: "1", top: "+=12px"}, "fast")
		$(".potpis")
		.animate({opacity: "1"}, "fast")
		$(".sajt")
		.slideDown()
		return false;	
	});

	
});



// LINK 

$(document).ready(function(){

//1
 	$(".i1").mouseenter(function(){
		$(".i1")
		.animate({opacity: "0.5", top: "-=5"}, "fast")
		return false;	
	});
 	$(".i1").mouseleave(function(){
		$(".i1")
		.animate({opacity: "1", top: "+=5"}, "fast")
		return false;	
	});

//2
 	$(".i2").mouseenter(function(){
		$(".i2")
		.animate({opacity: "0.5", top: "-=5"}, "fast")
		return false;	
	});
 	$(".i2").mouseleave(function(){
		$(".i2")
		.animate({opacity: "1", top: "+=5"}, "fast")
		return false;	
	});

//3
 	$(".i3").mouseenter(function(){
		$(".i3")
		.animate({opacity: "0.5", top: "-=5"}, "fast")
		return false;	
	});
 	$(".i3").mouseleave(function(){
		$(".i3")
		.animate({opacity: "1", top: "+=5"}, "fast")
		return false;	
	});

//4
 	$(".i4").mouseenter(function(){
		$(".i4")
		.animate({opacity: "0.5", top: "-=5"}, "fast")
		return false;	
	});
 	$(".i4").mouseleave(function(){
		$(".i4")
		.animate({opacity: "1", top: "+=5"}, "fast")
		return false;	
	});

//5
 	$(".i5").mouseenter(function(){
		$(".i5")
		.animate({opacity: "0.5", top: "-=5"}, "fast")
		return false;	
	});
 	$(".i5").mouseleave(function(){
		$(".i5")
		.animate({opacity: "1", top: "+=5"}, "fast")
		return false;	
	});

	
});





