jQuery.noConflict();
jQuery(document).ready(function(){
	
	// PANEL
	jQuery(".tickTock").click(function(){
		jQuery("#panel").slideToggle(500);
			jQuery(this).toggleClass("active");
			return false;
	});
	
	// POSTBIT
	jQuery(".acKapa").click(function(){
		jQuery('.userDetails').slideToggle(500);
			return false;
	});
	
	// LOGO ve ALT LOGO
	jQuery(".logo span, .subLogo span").css("opacity","0");
	jQuery(".logo span, .subLogo span").hover(function () {
		jQuery(this).stop().animate({
			opacity: 1
		}, 1000);
	},
	function () {
		jQuery(this).stop().animate({
			opacity: 0
		}, 1000);
	});
	
	// MERI KRIZMIS
	jQuery('#noel').click(function(event) {
		jQuery(this).animate({
			right: 200
		}, {
			duration: 1000,
			easing: 'easeOutBounce'
		})
		.animate({
			right: 0
		}, {
			duration: 1000,
			easing: 'easeOutBounce'
		});
	});
	
	// TOOLTIP
	jQuery('.descModSub img').tipsy({
		fade: true,
		gravity: 's'
	});
	
});
