$(function() {
	$('.box_skitter').skitter({
		animation: 'blindWidth',
		numbers: false,
		navigation: false,
		hideTools: true
	});

	$('.frame').not('#frame01').hover(
		function () {
			$('img', this).css('opacity', 0.5);
		},
		function () {
			$('img', this).css('opacity', 1);
		}
	).click( function(){
		location.href = $('a', this).attr('href');
	}).css('cursor', 'pointer');

});

