$(document).ready(function() {
	$('select#vtype').change(function() {
		var ftype = $("select#vtype option:selected").val();
		document.location.href = "./?ftype="+ftype;
	});
	
	$('select#vchannel').change(function() {
		var source = $("select#vchannel option:selected").val();
		document.location.href = "./?source="+source;
	});
	
	$("form#rightColSearch").submit( function() {
		var area = $("input:radio:checked", this).val();
		if (area == 's') {
			$("input:radio:checked", this).val('');
			this.action = '/search/';
		}
		
		return true;
	} );
	
});