/* ABOUT-US/LOCATIONS ======================================================== */
Shadowbox.init({
    language: 'en',
    players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
});

$(function() {
/* ABOUT-US/NEWS ============================================================= */
/* INVESTMENT MANAGEMENT/MARKET INSIGHTS ===================================== */
	// NEWS/MARKET INSIGHTS SELECTOR
	$("#news_selector").change(function(){
		var value = $(this).val();
		if (value != '') {
			$('#big_news_lister li').fadeOut(function(){
				setTimeout(function(){
					$("#big_news_lister li."+value).fadeIn();
				}, 500);
			});
		} else {
			$("#big_news_lister li").fadeIn();
		}
	});
	
	// MEDIA INSIGHTS INITIAL SELECTION
	$('#market_insights #big_news_lister li').hide();
	$("#market_insights #big_news_lister li.2009").show();
	$("#market_insights #big_news_lister li.2010").show();

/* ABOUT-US/LOCATIONS ======================================================== */
	$("#location_info div:eq(0)").addClass('active');
	$("#location_info div:not(:eq(0))").hide();
	$("#location_selector ul li a").click(function(){
		// GET THE CLASS OF THE CLICKED LINK
		var href = $(this).attr('href');
		var tmp = href.split("#");
		var loc_info = tmp[1];
		
		if ( $("#location_info div.active").is(':visible') ) {
			// IF A CITY IS CLICKED AND ONE IS CURRENTLY VISIBLE...
			if ($("#location_info table.active").hasClass(loc_info)){
				// do nothing
			} else {
				$("#location_info div.active").fadeOut(function(){
					setTimeout(function () {
						$("#location_info div.active").removeClass('active');
						$("#location_info div." + loc_info).addClass('active').fadeIn();
					}, 500);
				});
			}
		} else {
			// IF ONE IS NOT CURRENTLY VISIBLE, SHOW
			$("#location_info div").fadeOut();
			$("#location_info div." + loc_info).addClass('active').fadeIn();
		}
		return false;
	});
	
	// IF SHOW ALL IS CLICKED...
	$("#show_all").click(function(){
		if ( $("#location_info div.active").is(':visible') ) {
			$("#location_info div.active").fadeOut(function(){
				$("#location_info div.active").removeClass('active');
				//$("#location_info div:not(.los_angeles,.london)").fadeIn();
				$("#location_info div").fadeIn();
			});
		} else {
			$("#location_info div").removeClass('active').fadeIn();
		}
	});

/* CONTACT ======================================================== */	
/*
	// Form Validation
	$.metadata.setType('attr','validate');
	$("#contact_form").validate();
*/
	$('#media_contact, #hr_contact,#plc_lt_zoneContent_PagePlaceholder_PagePlaceholder_lt_Content_BizForm1_viewBiz,.field:eq(4),.field:eq(5),.field:eq(6)').hide();
	$("#general_type").click(function(){
		$('#plc_lt_zoneContent_PagePlaceholder_PagePlaceholder_lt_Content_BizForm_viewBiz,#general_contact').slideDown();
		$('#media_contact,#hr_contact,.field:eq(4),.field:eq(5),.field:eq(6),#plc_lt_zoneContent_PagePlaceholder_PagePlaceholder_lt_Content_BizForm1_viewBiz').slideUp();
	});
	$("#media_type").click(function(){
		$("#general_contact,#hr_contact,#plc_lt_zoneContent_PagePlaceholder_PagePlaceholder_lt_Content_BizForm1_viewBiz").slideUp();
		$('#plc_lt_zoneContent_PagePlaceholder_PagePlaceholder_lt_Content_BizForm_viewBiz,#media_contact,.field:eq(4),.field:eq(5),.field:eq(6)').slideDown();
	});
	$("#hr_type").click(function(){
		$('#general_contact,#media_contact,#plc_lt_zoneContent_PagePlaceholder_PagePlaceholder_lt_Content_BizForm_viewBiz').slideUp();
		$('#hr_contact,#plc_lt_zoneContent_PagePlaceholder_PagePlaceholder_lt_Content_BizForm1_viewBiz').slideDown();
	});
	
	$("#section_links li:last").addClass('last');
});
