//Domready
$(document).ready(function(){

Cufon.replace('#nav a', { hover: true }, { fontFamily: 'Segoe' }) ('.main_title', { hover: true }, { fontFamily: 'Segoe' }) ('#sidebar_nav a', { hover: true }, { fontFamily: 'Segoe' }) ('#portofoliu_listing h2 a', { hover: true }, { fontFamily: 'Segoe' });

$("ul#tab_nav").tabs("div.panes > div", {effect: 'fade', fadeOutSpeed: "slow"}); 

$(".scrollable").scrollable({size: 1}).circular().navigator();

//sidebar animation
$("#sidebar_nav a").not("#sidebar_nav .active").hover(function() {
	$(this).stop().animate({marginLeft: "12px"}, 400);
	}, function() {
	$(this).stop().animate({marginLeft: "0px"}, 200);
});

//partner listing
$(".partner_listing a").hover(function() {
	$(this).stop().animate({marginLeft: "12px"}, 400);
	}, function() {
	$(this).stop().animate({marginLeft: "0px"}, 200);
});

//image fade
$("#portofoliu_listing li img").fadeTo("slow", 0.4);
$("#portofoliu_listing li img").hover(function(){
	$(this).fadeTo("slow", 1.0);
},function(){
	$(this).fadeTo("slow", 0.3);
});


}) //Domready end