var $objects = new Object();

	if (!("console" in window)) {
		window.console = {};
		window.console.log = function(str){
			return str;
		};
	}

//--------------------------------------------
// ready 
//--------------------------------------------
$(document).ready(function(){

	//--------------------------------------------
	// common 
	//--------------------------------------------
	//browser check -------------------------------------------- */
	if (navigator.platform.indexOf("Win") != -1) {
		$objects.os = "win";
		
		$('body').addClass("win");
		if ( !jQuery.support.leadingWhitespace ) { $('body').addClass("win-ie"); }
	}

	//rollovar - alpha --------------------------------------------
	$('.alpha img').hover(function() {
		if ( jQuery.support.leadingWhitespace ) {
			$(this).stop(true, false).animate({ opacity: .5 }, { duration: 100});
		}
		//if ( !jQuery.support.leadingWhitespace ) { this.style.removeAttribute('filter'); }
	}, function () {
		if ( jQuery.support.leadingWhitespace ) {
			$(this).stop(true, false).animate({ opacity: 1 }, { duration: 100});
		}
		//if ( !jQuery.support.leadingWhitespace ) { this.style.removeAttribute('filter'); }
	});

});

