/*
File: jquery.config.js
Copyright: (c) 2010 Brand Rich Media
Author: Brandon Neil Richards
Author URI: http://www.brandrichmedia.com/
*/
//callbacks


$(function() 
{
		$('#coda-slider-1').codaSlider({
			dynamicArrows: false,
			dynamicTabs: false 
		});
		$('#contact').hide();
		$('#login').click(function(){
			$('#contact').slideToggle(400);
			return false;
		});
		
		// remove input text
		$('.rmv').click(function() {
			if (this.value == this.defaultValue) {
				this.value = '';
			}
		});
		
		$('.rmv').blur(function() {
			if (this.value == '') {
				this.value = this.defaultValue;
			}
		});
		
		//open windows without embedding target="_blank"		
		$('a[class="external"]').each(function() {
		$(this).attr('target', '_blank');
		});
		
		//overlays
		$(".watchcontainer a[rel]").overlay();
		
		

});

