/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/*!!!!!!!!!!!!!!!!!!!!!!  Copyright 2012 - Omega Technology Group   !!!!!!!!!!!!!!!!!!!!!!*/
/*!!!!!!!!!!!!!!!!!!!!!!!!  http://www.omegatechnologygroup.com   !!!!!!!!!!!!!!!!!!!!!!!!*/
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

// Opens new window for valid xhtml strict doctype
$(document).ready(function() {
	$("a[rel=external]").attr('target', '_blank');
});

// Function for new Menu
//$(document).ready(function(){
//	$("#navNewMenu-ComingSoon").superfish({
//		delay: 800,
//		speed: 'fast',
//		autoArrows: false,
//		animation: {opacity:'show',height:'show'}
//	});
//});

// Datepicker for Appointments page

// REMOVES default-value in text fields
$(document).ready(function() {
 $('.default-value').each(function() {
    var default_value = this.value;
    $(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
        }
    });
    $(this).blur(function() {
        if(this.value == '') {
            $(this).css('color', '#000');
			this.value = default_value;
        }
    });
 });
});
