// Core Javascript

$(function() {
  //$('#nav-generic li:not(:last), #nav-home li:not(:last), , #nav-footer li:not(:last)').append("&nbsp;|");
	
	//equalHeight($("#section-base div"));
	
	$("#carousel").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 8000, true);
		$("#carousel").hover(
			function() {
			$("#carousel").tabs("rotate",0,true);
			},
			function() {
			$("#carousel").tabs("rotate",8000,true);
		}
	);
	
	$('.ddl-invest-type').attr("disabled", "disabled");
	$('.toggle').css('color', '#ccc');
	
  $('.ddl-location').bind('change', function (e) { 
    if( $(this).val() == 'UK') {
      $('.ddl-invest-type').removeAttr("disabled");
			$('.toggle').css('color', '#000');
    }
    else{
      $('.ddl-invest-type').attr("disabled", "disabled");
			$('.toggle').css('color', '#ccc');
    }         
  });
	
});

