$(document).ready(function() {
	var user_id = $('#user').attr('user_id');
	var list = $('.mypageGenre table a');
	var select = $.tag('select').attr('id', 'UserHasStyle');
	select.append(
		$.tag('option').attr('value', '/user/' + user_id).text('すべて')
	);
	list.each(function() {
		select.append($.tag('option')
			.attr('value', $(this).attr('href'))
			.text($(this).find('img').attr('alt'))
		);
	});
	var current = document.URL.split('/');
	current.shift();
	current.shift();
	current.shift();
	select.find('option[value="/' + current.join('/') + '"]').attr('selected', 'selected');
	select.change(function() {
		location.href = $(this).val();
	});
	var div = $.tag('div').addClass('deviseFocus').append(select);
	$('.deviseTitle').append(div);
});

