//**********************************************************************************************************************
/**
* DOCUMENT: /core/plugins/media/front/deals.front.js
* DEVELOPED BY: Ryan Stemkoski
* COMPANY: Zipline Interactive
* EMAIL: ryan@gozipline.com
* PHONE: 509-321-2849
* DATE: 10/20/2010
* DESCRIPTION: This document has all of the javascript functions required for the media plugin.
*/
//***********************************************************************************************************************

//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {

	//SHOW CONDITIONS ON CLICK
	$('#choose_notices_deals').change(function() {
		
		//GET THE VAlUE
		if($('#choose_notices_deals').is(':checked')) {
			$('.deals_show_dealoptions').show();
		} else {
		
			//IF TURNING OF DEALS HIDE OPTIONS AND CLEAR FIELDS
			$('.deals_show_dealoptions').hide();
			$('.deals_show_cell').hide();
			
			$('#choose_method_email').attr('checked', false);
			$('#choose_method_cellphone').attr('checked', false);
		}
		
	});
	
	//SHOW CONDITIONS ON CLICK
	$('#choose_notices_conditions').change(function() {
		
		//GET THE VAlUE
		if($('#choose_notices_conditions').is(':checked')) {
			$('.deals_show_email').show();
			$('.deals_show_conditions').show();
		} else {
			if(!$('#choose_method_email').is(':checked')) {
				$('.deals_show_email').hide();
			}
			$('.deals_show_conditions').hide();
		}
		
	});	
	
	//SHOW CONDITIONS ON CLICK
	$('#choose_method_email').change(function() {
		
		//GET THE VAlUE
		if($('#choose_method_email').is(':checked')) {
			$('.deals_show_email').show();
		} else {
			if(!$('#choose_notices_conditions').is(':checked')) {
				$('.deals_show_email').hide();
			}
		}
		
	});	
	
	//SHOW CONDITIONS ON CLICK
	$('#choose_method_cellphone').change(function() {
		
		//GET THE VAlUE
		if($('#choose_method_cellphone').is(':checked')) {
			$('.deals_show_cell').show();
		} else {
			$('.deals_show_cell').hide();
		}
		
	});	
	
	//HIDE SECTIONS ON LOAD
	if(!$('#choose_notices_conditions').is(':checked')) {
		$('.deals_show_conditions').hide();
	}
	
	//HIDE DEALS OTPTIONS IF FIELDS ARE NOT CHECKED
	$('.deals_show_email').hide();
	
	if($('#choose_notices_conditions').is(':checked')) {
		$('.deals_show_email').show();
	}
	
	if($('#choose_method_email').is(':checked')) {
		$('.deals_show_email').show();
	}
	
	if(!$('#choose_method_cellphone').is(':checked')) {
		$('.deals_show_cell').hide();
	}
	
	if(!$('#choose_notices_deals').is(':checked')) {
		$('.deals_show_dealoptions').hide();
	}	
		
});

