$(document).ready(function(){

	$('ul.os-client-list img').hover(function(){
		$(this).attr('src','/52/ohanasites/images/screenshotOverlay1.png');
		$(this).nextAll('a').addClass('hover');
	},function(){
		$(this).attr('src','/52/ohanasites/images/screenshotOverlay.png');
		$(this).nextAll('a').removeClass('hover');
	}).click(function(){
		window.open( $(this).nextAll('a').attr('href'), "sites" );
	}).each(function(){
		var sr = $(this).attr('src');
		if( sr.toLowerCase().indexOf('.jpg') > -1 ) $(this).css({ background:'url('+sr+') center no-repeat' }).attr('src','/52/ohanasites/images/screenshotOverlay.png');
	});
	
	$('ul.os-client-list a').each(function(){
		var th = $(this);
		if( !th.attr('target') || th.attr('target') != 'sites' ) th.attr('target', 'sites');
	});
//	$("#carousel").CloudCarousel(
//		{
//			xPos: 365,
//			yPos: 50,
//			xRadius: 280,
//			yRadius: 60,
//			mouseWheel: true,
//			bringToFront: true,
//			reflHeight:50
//		}
//	);

});
