
function com_srausc_searchForm() {
	com_srausc_modal();
	if( $('#ajaxSearchResults').children().length>0 ) {
		// open results in new window
	} else if( $('#query').val()=='search' ) {
		window.alert('Please enter a search term.');
	} else {
		// Build tabs and results list
		/*var tabs =	'<span class="tabsPrefix">Sort by:</span>'+
					'<ul class="tabs">'+
					' <li><a href="/search/ajax/doctor?search=">Doctors</a></li>'+
					' <li><a href="/search/ajax/condition?search=">Conditions</a></li>'+
					' <li><a href="/search/ajax/specialty?search=">Specialties</a></li>'+
					' <li><a href="/search/ajax/department?search=">Departments</a></li>'+
					' <li><a href="/search/ajax/location?search=">Locations</a></li>'+
					'</ul>';*/
		
		var tabs =	'<ul class="tabs">'+
					' <li><a href="/search/ajax/doctor?search=">Doctors</a></li>'+
					' <li><a href="/search/ajax/condition?search=">Conditions</a></li>'+
		//			' <li><a href="/search/ajax/procedure?search=">Procedures</a></li>'+
					' <li><a href="/search/ajax/specialty?search=">Specialties</a></li>'+
					' <li><a href="/search/ajax/department?search=">Departments</a></li>'+
					' <li><a href="/search/ajax/location?search=">Locations</a></li>'+
					'</ul>';
		 
		var results = '<ul class="results loading"></ul>';

		// Show modal results
		$('#search').attr('id','ajaxSearchResults').append('<div class="bottom"></div>');
		$('#ajaxSearchResults div.top')
			.prepend('<h4>Your Results:</h4>')
			.append(tabs)
			.append(results);
		$('#ajaxSearchResults div.bottom')
			.prepend('<a href="/search?search='+ $('#query').val() +'">View all search results &raquo;</a>');
		$('#ajaxSearchResults div.bottom a').click(function() {
		    com_srausc_searchForm_close();
		});
		$('#ajaxSearchResults a.cancel').click(function() {
			com_srausc_searchForm_close();
			return false;
		});

		// Controls tabs
		$('#ajaxSearchResults ul.tabs li a').click(function() {
			com_srausc_searchForm_tab($(this));
			return false;
		});

		$('#ajaxSearchResults ul.tabs li:first-child a').trigger('click');
	}
	return false;
}

function com_srauscuni_ready() {
    /* Video: Fight On */
    com_srausc_video_static('.fight-on-video-link', '125317', 'two-simple-words', 'Fight On');

    /* Video: Bariatrics Webinar */
    com_srausc_video_static('.bariatrics-webinar-video', '125441', 'bariatrics-webinar', 'Bariatrics Webinar');

    /* Video: Michelle's Story */
    com_srausc_video_static('.bariatrics-story-video', '125302', 'michelles-story', "Michelle's Story");
    
    /* Video: Dudley's Story */
    com_srausc_video_static('.cardiopulm-story-video', '125300', 'dudleys-story', "Dudley's Story");
}


$(document).ready(function(){
    $('#quickLinks .jNiceSelectWrapper, #quickLinks .jNiceSelectWrapper > ul').css({width: ''});
    $('#headLinksLining').corner({
        autoPad: true,
        autoAlias: true,
        tl:false,
        bl:{radius:8},
        tr:false,
        br:{radius:8}
    });
    
    com_srauscuni_ready();
});

