$(document).ready(function() {
	// ============================================================ REMOVE body.no_js
	$('body').removeClass('no_js');
	// Get browser
    $.each($.browser, function(i) {
        $('body').addClass(i);
        return false;  
    });
    // Get OS
    var os = [
        'iphone',
        'ipad',
        'windows',
        'mac',
        'linux'
    ];
    var match = navigator.appVersion.toLowerCase().match(new RegExp(os.join('|')));
    if (match) {
        $('body').addClass(match[0]);
    };
	// ============================================================ IMAGE OPACITY
	$('.imgOpa').css({
		opacity:0.6
	});
	$('.imgOpa').each(function() {
		$(this).hover(
			function() { $(this).stop().animate({ opacity: 1.0 }, 10); },
			function() { $(this).stop().animate({ opacity: 0.6 }, 500);
		})
	});
	// ============================================================ FANCYBOX
	$("a.zoom").fancybox({
		'overlayOpacity'	:	0.7,
		'overlayColor'		:	'#FFF'
	});
	
});

