var Site = {

	init: function() {
		if ($('#slideshow').length > 0) {
			$('#slideshow img:first').fadeIn(1000, function() {
				$('#slideshow').cycle();
			});
		}
		Site.tableManager();
		Site.formManager();
	},
	
	tableManager: function () {
		var configTable = new Array();
		configTable['autoWidth'] = true;	
		$('div#content div.right table').width($('div#content div.right').width());
		$('div#content div.right table').each(function(index) {
			$(this).find("tr:first-child").addClass('firstline'); 
			$(this).find("td:first-child").addClass('firstcolumn'); 
		});
	},
	
	formManager: function () {
		$.datepicker.setDefaults({
			dateFormat: 'yy-mm-dd'
		});
		$( "form input.type_date" ).datepicker();
	}
};

Shin.loadJavascript(';js/site.map.js');
