﻿function Trim(value)
{
	value = value.match(/^\s*(\S+(\s+\S+)*)\s*$/);
	return (value == null) ? "" : value[1];
}
$(function(){
  if($.browser.msie){
	$(".wrp").wrap('<div class="container2ie" />');
	$(".menucnt, .container2ie", this).boxShadow(0, 0, 5, "#000");
	$(".wrp").css({"background":"#FFF"});
  }
  $("select#txtMuze").uniform().change(function(){
	  var hrf = $(this).val();
	  if(hrf)
	  	document.location.href=hrf;
	  });
});

