$(document).ready(function() {
	
	
	// MENU	
	
	
	$('#' + page + '_btn').addClass('selected');
	
	
	// PRELOAD IMAGES
	
	
	var cache = [];
	var preload_array = new Array('http://www.photoloco.com.au/images/background/arrow-up.png','http://www.photoloco.com.au/images/background/arrow-down.png','http://www.photoloco.com.au/images/background/arrow-left.png','http://www.photoloco.com.au/images/background/arrow-right.png');
	var args_len = preload_array.length;
	for (var i = args_len; i--;) {
		var cacheImage = document.createElement('img');
		cacheImage.src = preload_array[i];
		cache.push(cacheImage);
	}
	
	
	// SCROLLBARS
	
	
	if ($('#scroll').length != 0) {
		$('#scroll').jScrollPane({
			topCapHeight : 10,
			bottomCapHeight : 0,
			wheelSpeed : 5,
			scrollbarWidth : 10,
			dragMaxHeight : 150,
			showArrows : true,
			animateTo : true
		});
	}
	
	
	// LOCATIONS
	
	
	if (page == 'locations' || page == 'showcase') {
		$('#locations_outer, #locations_inner').css('width', $('#container').width() - 40);
		$('#locations_outer').css('top', (($('#container').height() / 2) - 175));
		$('#locations').css('width', locations_width);
		$('#locations_inner').jScrollPane({
			showArrows: true,
			horizontalDragMinWidth: 100,
			horizontalDragMaxWidth: 150,
			trackWidth : 500
		});
		
		$('.jspTrack').css('left', (($('.jspScrollable').width() - $('.jspTrack').width()) / 2));
		if ($('.jspTrack').position()) {
			$('.jspArrowLeft').css('left', $('.jspTrack').position().left - 14);
			$('.jspArrowRight').css('left', $('.jspTrack').position().left + $('.jspTrack').width() + 6);
		}
		
		if (current_location == 'main') {
			// $('#locations_inner')[0].scrollTo(main_position * -1);
		}
		
		$('#locations_outer').removeClass('hidden');
	}
	
	
	// VIEW LOCATION
	
	
	view = function(location) {
		main_position = $('#locations_inner').position().left;
		// window.location = 'index.php?location=' + location + '&main_position=' + main_position;
		window.location = '/locations/' + location + '/';
	}
	
	
	// HOME
	
	
	$("#home-select").change(function() {
        var type = $(this).val();
		if (!type) {
			window.location = '/locations/';	
		} else {
        	// window.location = "/new/locations/index.php?type=" + type;
			window.location = '/locations/' + type + '/';
		}
    });
	
	if (page == 'home') {
		$('.cycle').cycle({
			speed : 1000,
			timeout : 3500
		});
		$('#home-images img').removeClass('hidden');
		$('#container').removeClass('hidden');
	} else {
		$('#container').removeClass('hidden');
	}
	
});


$(window).resize(function() {

	if (page == 'locations' || page == 'showcase') {
		$('#locations_outer, #locations_inner').css('width', $('#container').width() - 40);
		$('#locations_outer').css('top', (($('#container').height() / 2) - 175));
		$('#locations').css('width', locations_width);
		$('#locations_inner').jScrollPane({
			showArrows: true,
			horizontalDragMinWidth: 100,
			horizontalDragMaxWidth: 150,
			trackWidth : 500
		});
		
		$('.jspTrack').css('left', (($('.jspScrollable').width() - $('.jspTrack').width()) / 2));
		if ($('.jspTrack').position()) {
			$('.jspArrowLeft').css('left', $('.jspTrack').position().left - 14);
			$('.jspArrowRight').css('left', $('.jspTrack').position().left + $('.jspTrack').width() + 6);
		}
		
		if (current_location == 'main') {
			// $('#locations_inner')[0].scrollTo(main_position * -1);
		}
		
		$('#locations_outer').removeClass('hidden');
	}
	
});
