// Document Ready
$(document).ready(function() {
	$('#recent-works img, #works img, .tooltip img').attr('title', '');
	
	$("a[rel='zoom']").colorbox();
});

// Page Items
$(document).ready(function() {
	$(".btn").hover(function() {
        $(this).stop().animate({top: "-3px"}, 200);
	},function() {
        $(this).stop().animate({top: "-10px"}, 300);
	});
});

// Recent Works Items
$(document).ready(function() {
	$(".item a").animate({opacity: "0.60"}, "fast");
	$(".item a").hover(function() {
        $(this).stop().animate({opacity: "100"}, 400);
	},function() {
        $(this).stop().animate({opacity: "0.60"}, 500);
	});
});

$(document).ready(function() {
$('#recent-works a[title], #works a[title], .tooltip[title]').qtip({style: {name: 'dark', tip: true, background: '#2f2f2f', border: {radius: 5}}, position: {corner: {target: 'topMiddle', tooltip: 'bottomMiddle'}}})
});
