var holden = {
// -------
	init: function() {
		this.enableSlider();
		this.modalBox();
		$('hr').wrap('<div class="hr"></div>');		
		
		$('#nav li').hover(
					function() {
						$(this).addClass('hover');
					},
					function() {
						$(this).removeClass('hover');				
					}
				);
	
	},
// -------	
	enableSlider: function() {
		$('#intro > ul').bxSlider({
			auto: true,
			pager: true, 		
			speed: 300,
			pause: 8000,
			controls: false,
			autoHover: true,
			mode: 'fade'
		});
	},
	modalBox: function() {
		if ($('.google-map').length) {
			$('.google-map').colorbox({
				width:"600px", 
				height:"510px", 
				iframe:true
			});
		}
	}
// -------
};

$(function() { 
	holden.init(); 
});
