// Superfish Menu
jQuery(document).ready(function($){
	$('ul.sf-menu').superfish(); 
});

// Cufon
Cufon.replace('.menu-top, .menu-footer, .top-tag, .top-follow ', { hover: true });

// nth-child for portfolio/gallery
jQuery(document).ready(function($){
	$('ul.folioitem li:nth-child(10n+1)').css({'float' : 'right','margin-right' : '22px'});	
});

// Hover Zoom
jQuery(document).ready(function($){
	$(".hover-zoom").hover(function(){
			$(this).children("span").hide();										   
			$(this).children("span").stop().fadeTo(300, 1); 
		},function(){
			$(this).children("span").stop().fadeTo(300, 0);
	});
}); 

// Hover Home
jQuery(document).ready(function($){
	$(".businessitem-hover").hover(function(){
			$(this).children("span").hide();										   
			$(this).children("span").stop().fadeTo(300, 1); 
		},function(){
			$(this).children("span").stop().fadeTo(300, 0);
	});
});

// Hover Home 2
jQuery(document).ready(function($){
	$(".businessitem-gray").hover(function(){
			$(this).children("span.aline").hide();										   
			$(this).children("span.aline").stop().fadeTo(300, 1); 
		},function(){
			$(this).children("span.aline").stop().fadeTo(300, 0);
	});
});
