/* -----------------------------------------------------------------------------------
--------------------------------------------------------------------------------------
	
	chico corsa
	Stylesheet: public/main.js
	Version: January 11, 2010
	
--------------------------------------------------------------------------------------
----------------------------------------------------------------------------------- */
jQuery(document).ready(function(){

	// Lightbox config
	var lightbox_config = {fixedNavigation:true, imageLoading: '/ui/public/image/lightbox/loading.gif', imageBtnPrev: '/ui/public/image/lightbox/prev.gif', imageBtnNext: '/ui/public/image/lightbox/next.gif', imageBtnClose: '/ui/public/image/lightbox/close.gif', imageBlank: '/ui/public/image/lightbox/blank.gif'};

	// Setup a content gallery
	$('#gallery-thumbs a').lightBox(lightbox_config);

	// Apply lightbox to all images with lightbox as a class
	$('a[class*="lightbox"]').lightBox(lightbox_config);

	// Open out links in new window
	$('a.out').bind('click', function() {
		window.open(jQuery(this).attr('href'));
		return false;
	});

	// Set focus to first form field on page
	jQuery('div#right_column input[type="text"]:first').focus();
	
});