
	/* PiCondo js */
	
	$(document).ready( function(){
		
	});

	$(function () {
		$('.picondo_rounded').corners("5px 5px");
		$('.picondo_nav_item_0').corners("5px 5px"); //.parent().css('padding', '2px').corner("5px");
		
		$('.picondo_image_item a img').hover(
			function () {
				$(this).animate({ opacity: 1 }, 300);
			},
			function () {
				$(this).animate({ opacity: .75 }, 100);
			}
		);
		
		$('.picondo_sources_item a img').hover(
			function () {
				$(this).animate({ opacity: 1 }, 300);
			},
			function () {
				$(this).animate({ opacity: .75 }, 100);
			}
		);
		
		$('.picondo_cursor a img').hover(
			function () {
				$(this).animate({ opacity: 1 }, 300);
			},
			function () {
				$(this).animate({ opacity: .66 }, 100);
			}
		);
		
		$('.picondo_image_rate').hover(
			function () {
				$(this).removeClass('picondo_image_rating_off');
				$(this).addClass('picondo_image_rating_on');
			},
			function () {
				$(this).removeClass('picondo_image_rating_on');
				$(this).addClass('picondo_image_rating_off');
			}
		);
	});
	
