// index.js

function newWindow(el) {
	window.open(el.href);
	return false;
}

$(function(){
//	$('.corner').corner({antiAlias:true});

    $("#top-cc li img, #menu img").fadeTo(0, 1, 0);
	$("#top-cc li img, #menu img").hover(function(){
		$(this).fadeTo(0, 0.6); }, function(){ $(this).fadeTo(0, 1.0);
	});

	$.preloadImages = function(){
		for(var i=0; i<arguments.length; i++){
			jQuery("<img>").attr("src", arguments[i]);
		}
	}
	$.preloadImages("images/body.jpg", "images/content.jpg", "images/content_bottom.png", "images/footer.png", "images/menu_home.png", "images/menu_company.png", "images/menu_chart.png", "images/menu_price.png", "images/menu_form.png");
});


