//Top bar
function callHome()
{
	window.location = $('#logo a').attr('href');
}
function callContactUs()
{
	window.location = $('#header_link_contact a').attr('href');
}
function callSiteMap()
{
	window.location = $('#header_link_sitemap a').attr('href');
}
function callBookmark()
{
	window.location = $('#header_link_bookmark a').attr('href');
}
function callUserInfo()
{	
	window.location = $('#header_user #your_account a').attr('href');
}
function getCustomerName()
{		
	return $('#header_user_info span:first').text();
}
function logout()
{
	window.location = $('#header_user #header_user_info a:first').attr('href');
}
function loginFromFlex(email, password)
{
	$("#login_form #email").attr("value",email);
	$("#login_form #passwd").attr("value",password);
	$("#login_form #SubmitLogin").click();	
}
function callCartInfo()
{	
	window.location = $('#header_user #header_nav #shopping_cart a:first').attr('href');
}
function changeLanguage(languageTitle)
{
	var selector = "#languages_block_top a[title^='"+languageTitle+"']";
	//alert( selector );
	var url = $(selector).attr('href');
	
	if( url != null )
		window.location = url;
}
function register()
{
	window.location = $('#header_user_info a:first').attr('href');
}
function callLogin()
{
	window.location = $('#header_user_info a:first').attr('href');
}
function search( textToSeach)
{
	$('#search_query').attr("value",textToSeach);
	$("input[name='submit_search']").click();
}
