/**
 * center a div
 */
jQuery.fn.center = function () {
    this.css("position","absolute");
    //this.css("top", (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop() + "px");
    this.css("left", ((($(window).width() - this.outerWidth()) / 2) + $(window).scrollLeft()) + "px");
    return this;
}

//init
$(document).ready(function() {
	//center
	$('#container').center();
	
	//video
	/*var player = $('video').mediaelementplayer({
		enableAutosize: true,
	    features: ['playpause','progress','current','duration','volume','fullscreen']
    });*/
	
	//website navigation
	var urlTitle = ['product','customers','quotes','about','contact']; // Fiendly URL
	var startSlide = 1;
	if (window.location.hash) {
		startSlide = parseInt( jQuery.inArray( window.location.hash.replace('#',''), urlTitle ) ) + 1;
	}
	$('#slides').slides({
		preload: false,
		//preloadImage: 'img/loading.gif',
		generatePagination: true,
		fadeSpeed: 0,
		slideSpeed: 200,
		autoHeight: true,
		autoHeightSpeed:0,
		start: startSlide,
		animationComplete: function(current){
			
			window.location.hash = '#' + urlTitle[current-1];

			scroll(0, 0);
		}
	});
	
});

//resize
$(window).resize(function() {
	$('#container').center();
});

