$(document).ready(function() {
	
	$('a[rel="qtip-talent"]').qtip({
		content: {
			text: 'Please email the above materials to our Talent Coordinator at talent@lfp.com<br /><br />' +
					'If you don\'t have access to email, feel free to give us a call at: 323 651-5400 ext. 7109 about how you can send us materials through the mail.<br /><br />' +
					'Please mail talent materials to:<br /><br />' +
					'Talent Coordinator<br />' +
					'L. F. P.<br />' +
					'8484 Wilshire Blvd.<br />' +
					'Beverly Hills, CA 90211'
		}
	});
	
	// Prevents backout script from running when clicking on links
	$("a").click(function() {
		exit=false;
	});	
	
	//reset values on load

	$('#casino_select').val('');

	$('#clubs_select').val('');

	$('#stores_select').val('');



	//boxes click

	$('.boxeslink').live('click', function() {
		// Reset all boxes so that only one is open at a time
		$(this).closest('ul').find('.boxeslink').removeClass('hidden');
		$(this).closest('ul').find('.li-boxes').addClass('hidden');
		$(this).closest('ul').find('li').removeClass('li-border-new');
		//
		
		$(this).parent().addClass('li-border-new');
		$(this).addClass('hidden');
		$(this).parent().find('.li-boxes').removeClass('hidden');
		
		/*
		$(this).animate({
			opacity: 0
		}, 2000, function() {
			$(this).css({'display' : 'none'});
			
			$(this).next('div').animate({
				opacity: 1
			}, 2000, function() {
				
			});
		});
		*/
	});

	

	//casino dropdown

	$('#casino_select').change(function(){

		var strName = $('#casino_select option:selected').val();
		
		if(strName != ''){
			$(this).parent().parent().find('#visit-casino').hide();
			$.get("locations/casino.php", { strName: strName }, function(data){

				$('#casino_select').parent().find('.content').html(data);

			});

		}else{
			$(this).parent().parent().find('#visit-casino').show();
			$(this).parent().parent().find('.content').html(' ');

		}

	});

	

	//clubs dropdown

	$('#clubs_select').change(function(){

		var strName = $('#clubs_select option:selected').val();
		
		if(strName != ''){
			$(this).parent().parent().find('#visit-clubs').hide();
			$.get("locations/clubs.php", { strName: strName }, function(data){

				$('#clubs_select').parent().find('.content').html(data);

			});

		}else{
			$(this).parent().parent().find('#visit-clubs').show();
			$(this).parent().parent().find('.content').html(' ');

		}

	});

	

	//stores dropdown

	$('#stores_select').change(function(){

		var strName = $('#stores_select option:selected').val();

		

		if(strName != ''){

			$.get("locations/stores.php", { strName: strName }, function(data){

				$('#stores_select').parent().find('.content').html(data);

			});

		}else{

			$(this).parent().parent().find('.content').html(' ');

		}

	});
	
	
	
	$('.hustlerworld-dropdown-top').change(function() {
		exit=false;
		//window.location = $(this).val();
		window.open($(this).val(), '_blank', "toolbar=1,location=1,menubar=1,status=1,resizable=1,scrollbars=1");
	});
	

	/** button and dropdown functionality	**/

	$('.hustler-world-button').live('click', function(){

		var strLink = $(this).parent().find('.hustlerworld-dropdown').val();

		

		if(strLink != ''){

			window.open(strLink, '_new');

		}

	});

	

	/** text ticker **/

	$('#js-news').ticker({titleText: 'News', debugMode: false, fadeInSpeed: 0, fadeOutSpeed: 0});

});
