$(function() {
	resize();
	$( window ).wresize( resize ); 
	$.fn.supersized.options = {  
		startwidth: 1000,  
		startheight: 600,
		vertical_center: 0,
		slideshow: 1,
		navigation: 0,
		transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
		pause_hover: 0,
		slide_counter: 0,
		slide_captions: 0,
		slide_interval: 5000  
	};
    $('#supersize').supersized();
    $('#scroll').scrollbarPaper( );
});

function resize()
{
	var mainObject = jQuery('#content #main');
	var scrollObject = jQuery('#scroll');
	var windowWidth = $( window ).width();
	var windowHeight = $( window ).height();
	mainObject.css( { width: Math.max( windowWidth - 335, 665 ), height: Math.max( windowHeight - 180, 420 ) } );
	scrollObject.css( { width: Math.max( windowWidth - 335, 665 ), height: Math.max( windowHeight - 200, 400 ) } );
	$('#scroll').scrollbarPaper( );
    $('.corner').corner( {  antiAlias: false, autoPad: true } );
    $('#map').gMap({
    	latitude: 34.974481,
    	longitude: 138.385345,
	    zoom: 16,
	    markers: [ { latitude: 34.974481, longitude: 138.385345 } ],
    	icon: {
    		image: "http://www.e-english.jp/images/marker.png", 
    		shadow: "http://www.e-english.jp/images/marker_shadow.png", 
    		iconsize: [80, 70],
    		shadowsize: [80, 70],
    		iconanchor: [20, 60],
    		infowindowanchor: [40, 0]
    	}
    });
    $('#map2').gMap({
    	latitude: 35.009524,
    	longitude: 138.491721,
	    zoom: 16,
	    markers: [ { latitude: 35.009524, longitude: 138.491721 } ],
    	icon: {
    		image: "http://www.e-english.jp/images/marker.png", 
    		shadow: "http://www.e-english.jp/images/marker_shadow.png", 
    		iconsize: [80, 70],
    		shadowsize: [80, 70],
    		iconanchor: [20, 60],
    		infowindowanchor: [40, 0]
    	}
    });
}

