function frame_check()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}

$(document).ready(function(){

    $("#tabs").tabs();
    $('#dialog').dialog({
			bgiframe: true,
			buttons: {
				OK: function() {
					$(this).dialog('close');
				}            
			},
            width: '400px'
		});
    
    $('#submenu').hide();

   $('#submenu_parent').change(function(){
    $('#submenu').slideToggle('slow');
   });
   
   $('.rdx_home').change(function(){
    $box = $(this);
    $state = $box.attr('checked');
    $('.rdx_home').attr("checked", "");
    $box.attr('checked',$state);
   });
   
      $('.rdx_location').change(function(){
    $box = $(this);
    $state = $box.attr('checked');
    $('.rdx_location').attr("checked", "");
    $box.attr('checked',$state);
   });
   
      $('.rdx_accommodation').change(function(){
    $box = $(this);
    $state = $box.attr('checked');
    $('.rdx_accommodation').attr("checked", "");
    $box.attr('checked',$state);
   });
   
      $('.rdx_travel').change(function(){
    $box = $(this);
    $state = $box.attr('checked');
    $('.rdx_travel').attr("checked", "");
    $box.attr('checked',$state);
   });
   

}); /*End JQuery*/