(function($) {
	$(document).ready(function(){
		var loc = window.location.toString().split("/");
		loc = loc[loc.length - 1];
		if(!loc) loc = 'index.html';
		$("#navigation-upper a[href=\""+loc+"\"]").addClass("current");
		
		if ($('#content-banner .item').length) {
			$('#content-banner .item').hover(function() {
				$(this).addClass('hover');
			},
			function() {
				$(this).removeClass('hover');
			});
			$('.item').click(function() {
				var url = $(this).find('h4 a').attr('href');
				if(url) window.location = url;
			});
		}
		
		$(document).pngFix();
	});
})(jQuery);
