	$(document).ready(function()
	{
		
		/* PHOTO CARROUSEL */
		
		if ($('.photo-car img').length > 0) $('.photo-car img').photoCarrousel();
		
	});
	
	/* FUNCTION FOR REPLACING SUBMIT BUTTONS WITH TEXT */
	
	function replaceSubmitButton(obj)
	{
		var obj = $(obj);
	
		if (obj.length > 0)
		{
			$("input[type='submit']", obj).replaceWith(
				$('<a tabindex=0"></a>').html($("input[type='submit']", obj).val()).click(function()
				{
					obj.submit();
				})
				.addClass('sbmt_replaced')
				.attr('tabindex', '0')
				.focus(function(){ $(this).css('outline', 'black dotted thin'); })
				.blur(function(){ $(this).css('outline', '0'); })
				.keypress(function(e)
				{
					if (e.which == 13) obj.submit();
				})
			);
		}
	}

	


