﻿/*

Base Javascript for specific use on Guruwatch

*/

$(document).ready(function() {
    $('.WithBubble').bubble();  
    initFAQ();
});

function formatItem(row) {
	return  "<img src='" + row[1] + "'/><a href='#'>" + row[0] + "</a><span class='SubLine'>" + row[2] + "</span>";
}

function selectAutoComplete(li)
{
	if (li == null) {
		return true;
	};
	
	if( !!li.extra ) 
		var sValue = li.extra[3];
	else 
		var sValue = li.selectValue;
	
	document.location = sValue;
}

function initFAQ() {    
    $('.FaqHeader').click(function() {
        $('.'+$(this).attr('id')).slideToggle()
    });
}

