$(document).ready(function() {
	$('#featured-products').click(function() {
		$(this).animate({top:'-100%'}, 750);
	});
	
	if (SportName!=''){
		document.getElementById("selected-option-1").innerHTML = '<strong><a href="#">'+SportName.toUpperCase()+'</a></strong>';
	}else{
		document.getElementById("selected-option-1").innerHTML = '<strong><a href="#">Select Sport</a></strong>';
	}
	
	if (BrandName!=''){
		document.getElementById("selected-option-2").innerHTML = '<strong><a href="#">'+BrandName.toUpperCase()+'</a></strong>';
	}else{
		document.getElementById("selected-option-2").innerHTML = '<strong><a href="#">Select Brand</a></strong>';
	}
	
});

function showFeaturedProducts()
{
	$('#featured-products').animate({top:'0%'}, 1000, function() {
		// remove Flash
	});
}

function selectChangeHandler(elm)
{
	if (elm.value.indexOf('featured')>0){
		location.href=_slshCnt+'products';
	}else{
		if (elm.value.indexOf('select-1_')==0){ //sport
			location.href=_slshCnt+japan+'products/sport/'+CleanUrl(elm.value.replace('select-1_', ''));
		}else{ //brand
			location.href=_slshCnt+japan+'products/brand/'+CleanUrl(elm.value.replace('select-2_', ''));
		}
	}
}
function CleanUrl(str){
	var _res = str.split(' ').join('_');
	_res = _res.split('#').join('[pnd]');
	_res = _res.split('&').join('[amp]');
	_res = _res.split('?').join('[ques]');
	_res = _res.split('/').join('[slash]');
	return _res
}
