$(document).ready(function(){

	$('#main').load('main.php');
	
	$('#collection').load('collection.php');
	$('#store').load('store.php');
	$('#press').load('press.php');
	$('#contact').load('contact.php');
	
	$('#facebook').load('facebook.php');
	
	function load(cual) {
			//alert(cual);
            $('#main').load(cual + '.php');
        }

        $.history.init(function(url) {
                load(url == "" ? "1" : url);
            });

        $('#menu a').live('click', function(e) {
    		$('a.active').removeClass('active');
			$(this).addClass('active');
            var url = $(this).attr('href');
            url = url.replace(/^.*#/, '');
            $.history.load(url);
            $('.page').hide();
            return false;
        });
        
         $('.next').live('click', function(e) {
			$('#thumbs').nextSlide();
		});
});
