$(document).ready(function(){

$('td','tr#tabs').hover(function(){
	$(this).children('div').each(function(){
		this.style.backgroundImage = parseBgImage(this.style.backgroundImage,'in');
	});
},function(){
	$(this).children('div').each(function(){
		this.style.backgroundImage = parseBgImage(this.style.backgroundImage,'out');
	});
});
parseBgImage = function(bgImage,direction){
	if(direction == 'in'){
		if(bgImage.search(/selected/i) != -1){
			return bgImage;
		} else {
			bgImage = bgImage.replace(/tab/,'hover_tab');
			return bgImage;
		}
	} else {
		if(bgImage.search(/selected/i) != -1){
			return bgImage;
		} else {
			bgImage = bgImage.replace(/hover_tab/i,'tab');
			return bgImage;
		}
	}
};
Service = {
	go: function(element)
	{
		switch(element.value){
			case '1':
				window.location = rootdir + '/moving';
				break;
			case '2':
				window.location = rootdir + '/international';
				break;
			case '3':
				window.location = rootdir + '/smallmoves';
				break;
			case '4':
				window.location = rootdir + '/auto';
				break;
		}
	}
};
});