$(document).ready(function() {
	$('#category-id').change(function() {
		document.location = $(this).attr('value');
	});
	
	$('.player').click(function() {
		window.open('/player/','irinaplayer','menubar=0,resizable=0,width=380,height=570'); 
		return false;
	});
});