//run fun
$(document).ready(function() {
	if ($.browser.msie) {
		if (parseInt($.browser.version) < 7) {
			try {
				document.execCommand('BackgroundImageCache', false, true);
			} catch(e){}
			$('.ii-list a').hover(function() {
				$(this).addClass('hover');
			}, function() {
				$(this).removeClass('hover');
			});
		}
	}

	if ($('.home-group-1 .ii-list').length > 0) {
		$('.home-group-1 .ii-list li a[rel="lightbox"]').colorbox();
		$('.home-group-1 .ii-list li a').hover(function() {
			$(this).stop().animate({opacity:0.5},400);
		}, function() {
			$(this).stop().animate({opacity:1},400);
		});
	}

});

